MongoDB - Prevent duplication in your arrays
When we want to insert data in an array in Mongo we use $push . But it won't prevent you from inserting multiple times the same value in your array.
If you want to ensure that there's no duplication.
You can use : $addToSet
How it works
When you want...
blog.etheve.eu1 min read