“MongoDB FindoneAnDupdate Return Document New Document” Kode Jawaban

MongoDB FindoneAnDupdate Return Diperbarui

//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);
});
https://aybee.codes

MongofindoneAndupate

try {
db.grades.findOneAndUpdate(
   { "name" : "A.B. Abracus" },
   { $set: { "name" : "A.B. Abracus", "assignment" : 5}, $inc : { "points" : 5 } },
   { sort: { "points" : 1 }, upsert:true, returnNewDocument : true }
);
}
catch (e){
   print(e);
}
Aggressive Alligator

MongoDB FindoneAnDupdate Return Document New Document

const update = await client.db('database').collection('col').findOneAndUpdate({
      'param': 'value'
    }, {
      $set: {
        'param': 'newvalue'
      }
    }, {
      returnDocument: 'after',
      projection: {
        param: 1
      }
    })
Tarik

Jawaban yang mirip dengan “MongoDB FindoneAnDupdate Return Document New Document”

Pertanyaan yang mirip dengan “MongoDB FindoneAnDupdate Return Document New Document”

Lebih banyak jawaban terkait untuk “MongoDB FindoneAnDupdate Return Document New Document” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya