Create an Index for a document inside array inside document in MongoDB
Advertisements Let’s say I have this document: { "_id": objectId(), "products": [ { "product_id": "" } ] } I would like to make that the key product_id of documents in the array products must be unique for that document in the collection, (i don’t want it to affect other documents in the collection). I tried… Read More Create an Index for a document inside array inside document in MongoDB