Puoi accedere a uno specifico elemento dell'array in un update
dal suo indice in base 0 usando la notazione punto:
// Set the x property of the third element of a to 1
db.test.update({_id: 'sdsdfsd'}, {$set: {'a.2.x': 1}})
Puoi accedere a uno specifico elemento dell'array in un update
dal suo indice in base 0 usando la notazione punto:
// Set the x property of the third element of a to 1
db.test.update({_id: 'sdsdfsd'}, {$set: {'a.2.x': 1}})