Vous pouvez accéder à un élément de tableau spécifique dans une update
par son index basé sur 0 en utilisant la notation par points :
// Set the x property of the third element of a to 1
db.test.update({_id: 'sdsdfsd'}, {$set: {'a.2.x': 1}})
Vous pouvez accéder à un élément de tableau spécifique dans une update
par son index basé sur 0 en utilisant la notation par points :
// Set the x property of the third element of a to 1
db.test.update({_id: 'sdsdfsd'}, {$set: {'a.2.x': 1}})