Musisz użyć operatora pozycyjnego $
Na przykład:
update({
_id: 7,
"comments._id": ObjectId("4da4e7d1590295d4eb81c0c7")
},{
$set: {"comments.$.type": abc}
}, false, true
);
Nie testowałem tego, ale mam nadzieję, że będzie dla Ciebie pomocny.
Jeśli chcesz zmienić strukturę dokumentu, musisz użyć
db.collection.update(kryteria,objNew, upsert, multi)
Argumenty:
criteria - query which selects the record to update;
objNew - updated object or $ operators (e.g., $inc) which manipulate the object
upsert - if this should be an "upsert"; that is, if the record does not exist, nsert it
multi - if all documents matching criteria should be updated
i wstaw nowy objNew z nową strukturą. sprawdź to, aby uzyskać więcej informacji