MongoDB - Prevent duplication in your arrays
Jun 12, 2024 · 1 min read · 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...
Join discussion