Mongo change tous les documents sur le terrain

//Update all documents with "oldName" to "newName"
db.names.updateMany({ "name": "oldName" }, {  $set: { "name" : "newName" }  })
Uninterested Unicorn