xxxxxxxxxx
const userObjectId = mongoose.Types.ObjectId(userIdString);
await UserModel.updateOne({ _id: userObjectId }, { $set: { isVerifiedEmail: true } }).catch(
error => {
console.log(error);
}
);
console.log('user updated');
xxxxxxxxxx
model.updateOne({_id:'YOURID'}, {DATA YOU WANT TO UPDATE}, (err, result) => {
if(err) throw err
console.log(err)
})
xxxxxxxxxx
// Update the document using `updateOne()`
await CharacterModel.updateOne({ name: 'Jon Snow' }, {
title: 'King in the North'
});
// Load the document to see the updated value
const doc = await CharacterModel.findOne();
doc.title; // "King in the North"
xxxxxxxxxx
// Using queries with promise chaining
Model.findOne({ name: 'Mr. Anderson' }).
then(doc => Model.updateOne({ _id: doc._id }, { name: 'Neo' })).
then(() => Model.findOne({ name: 'Neo' })).
then(doc => console.log(doc.name)); // 'Neo'
// Using queries with async/await
const doc = await Model.findOne({ name: 'Neo' });
console.log(doc.name); // 'Neo'
xxxxxxxxxx
try { db.restaurant.updateOne( { "name" : "Central Perk Cafe" }, { $set: { "violations" : 3 } } );} catch (e) { print(e);}
xxxxxxxxxx
db.students3.updateOne(
{ _id: 3 },
[
{ $set: { average: { $trunc: [ { $avg: "$tests" }, 0 ] }, lastUpdate: "$$NOW" } },
{ $set: { grade: { $switch: {
branches: [
{ case: { $gte: [ "$average", 90 ] }, then: "A" },
{ case: { $gte: [ "$average", 80 ] }, then: "B" },
{ case: { $gte: [ "$average", 70 ] }, then: "C" },
{ case: { $gte: [ "$average", 60 ] }, then: "D" }
],
default: "F"
} } } }
]
)
xxxxxxxxxx
if (await AnnouncementModel.exists(query)) {
let existingAnnouncement = await AnnouncementModel.findOne(query).exec()
update(existingAnnouncement, editedAnnouncementPayload);
function update(targetObject, obj) {
Object.keys(obj).forEach(function (key) {
if ("object" === typeof obj[key] && !Array.isArray(obj[key])) {
update(targetObject[key], obj[key]);
} else {
targetObject[key] = obj[key];
}
});
}
existingAnnouncement.updatedDateTime = new Date();
existingAnnouncement.save() //or await xModule.updateOne(query, updatePayload).exec()
logger.debug("Document is updated");
logger.debug("Document is reindexed");
return existingAnnouncement;
} else {
throw new Error(`Announcement with announcementId: ${announcementId}, announcerUserId: ${principalUserId} not found,
might be that you are not the creator/owner of this announcement.`)
}