Answers for "findoneandupdate return new document"

0

returned value by findOneAndUpdate

const filter = { age: 17 };
const doc = { $set: { name: "Naomi" } };
const options = { new: true };

Cat.findOneAndUpdate(filter, doc, options, (err, doc) => {
    if (err) console.log("Something wrong when updating data!");
    console.log(doc);
});
Posted by: Guest on November-12-2020
0

mongodb findoneandupdate return new document

const update = await client.db('database').collection('col').findOneAndUpdate({
      'param': 'value'
    }, {
      $set: {
        'param': 'newvalue'
      }
    }, {
      returnDocument: 'after',
      projection: {
        param: 1
      }
    })
Posted by: Guest on August-12-2021

Code answers related to "findoneandupdate return new document"

Code answers related to "Javascript"

Browse Popular Code Answers by Language