Answers for "mongodb update all in object"

0

mongo change all documents on field

//Update all documents with "oldName" to "newName"
db.names.updateMany({ "name": "oldName" }, {  $set: { "name" : "newName" }  })
Posted by: Guest on June-01-2020
2

mongo updatemany query

try {
   db.restaurant.updateMany(
      { violations: { $gt: 4 } },
      { $set: { "Review" : true } }
   );
} catch (e) {
   print(e);
}
Posted by: Guest on January-23-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language