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

Aktualisieren Sie mehrere Unterdokumente ohne genaue Bedingung auf Unterdokumentebene

Gemäß dieser Ausgabe New operator to update all matching items in an array , derzeit gibt es in mongodb keine Operation, um dies zu tun. Fühlen Sie sich so traurig, dass diese Ausgabe 6 Jahre lang besteht.

Es könnte eine Problemumgehung in der Mongo-Shell wie unten geben.

> db.comments
    .find({})
    .forEach(function(doc) { 
                        doc.comments.map(function(c) {
                                if (c.active == 1) {
                                    c.status = 0;
                                 }
                        }); 
                        db.comments.update(
                                      {_id: doc._id}, 
                                      {$set: {comments: doc.comments}});
     });