[MONGODB] UPDATE MANY - fourslickz/notes GitHub Wiki
db.chapter_comments.updateMany(
{ isMigrated: true }, // Match documents where `isMigrated` is false
{ $set: { isMigrated: false } }
)
db.chapter_comments.updateMany(
{ isMigrated: true }, // Match documents where `isMigrated` is false
{ $set: { isMigrated: false } }
)