I have collection of documents, witch has an array, of embedded documents, how i can setup unique key on a field in these array?
example collection
{
field:1
field2: [
{field3:1, field4:4},
{field3:1, field4:5},
]
}
i would like to ensure that "field4" of array "field2" is unique across all documents in collection?