findOneAndUpdate mongodb update operator code example
Example 1: mongodb updateone
db.<collection>.updateOne({ id : 8400704 },{ $set: { name : "John" } })
Example 2: mongodb findoneandupdate return updated
//pass the {new: true} as the third option, if using mongodb driver use {returnOriginal: true} V--- THIS WAS ADDED
Cat.findOneAndUpdate({age: 17}, {$set:{name:"Naomi"}}, {new: true}, (err, doc) => {
if (err) {
console.log("Something wrong when updating data!");
}
console.log(doc);
});