“Обновите много мангустов” Ответ

обновление мангуоза и вернуть новый

const query = {} //your query here
const update = {} //your update in json here
const option = {new: true} //will return updated document

const user = await User.findOneAndUpdate(query , update, option)
Graceful Gerenuk

Монгуз найти несколько и обновлять

Model.updateMany({}, {})
florinrelea

Как обновить один мангуст

model.updateOne({_id:'YOURID'}, {DATA YOU WANT TO UPDATE}, (err, result) => {
	if(err) throw err
    
    console.log(err)
})
Motionless Macaque

Монгуостое массовое обновление

Character.bulkWrite([
  {
    updateMany: {
      filter: { name: 'Eddard Stark' },
      // If you were using the MongoDB driver directly, you'd need to do
      // `update: { $set: { title: ... } }` but mongoose adds $set for
      // you.
      update: { title: 'Hand of the King' }
    }
  }
]).then(res => {
 // Prints "1 1 1"
 console.log(res.modifiedCount);
});
tumulr

Mongoose Updatemany Пример

User.update({"created": false}, {"$set":{"created": true}}, {"multi": true}, (err, writeResult) => {});
Krushn

Обновите много мангустов

// Update all documents in the `mymodels` collection
await MyModel.updateMany({}, { $set: { name: 'foo' } });
Laith Alayassa

Ответы похожие на “Обновите много мангустов”

Вопросы похожие на “Обновите много мангустов”

Больше похожих ответов на “Обновите много мангустов” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования