MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

MongoDB aktualisiert Felder in einem verschachtelten Array

Dieses Problem wurde behoben. Die Funktion zum Aktualisieren von Feldern in verschachtelten Arrays von Objekten ist in MongoDB-Versionen ab Version 3.6 verfügbar. Positionsoperatoren (alle und mit Bezeichner) finden Sie hier.

//Update all docs in collection matching photo name "play" to "play photo"
db.collectioname.update(
    {},
    { $set: { "albums.$[].photos.$[photo_field].name": "play photo" } },
    { arrayFilters: [  {"photo_field.name": "play"} ], multi: true}
);

//Update this specific doc given in question matching photo name "play" to "play photo"
db.collectioname.update(
    {"_id" : ObjectId("4f41a5c7c32810e404000000")},
    { $set: { "albums.$[].photos.$[photo_field].name": "play photo" } },
    { arrayFilters: [  {"photo_field.name": "play"} ]}
);

Dies ist als Hilfe für Leute, die nach MongoDB 3.6 hierher kommen