この問題ごとに、New operator to update all matching items in an array
、現在、mongodbでそれを行う操作はありません。とても悲しい気持ちです。この問題は6年間続きます。
以下のように、mongoシェルで1つの回避策がある可能性があります。
> 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}});
});