From 12fd8e7ff17c5010457a7369ab4b23444792df51 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Sat, 3 Sep 2022 16:37:21 +0200 Subject: [PATCH] mongodb: refine update operations notes --- docs/database/mongo-db.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/database/mongo-db.md b/docs/database/mongo-db.md index 7468853..28552fd 100644 --- a/docs/database/mongo-db.md +++ b/docs/database/mongo-db.md @@ -173,12 +173,10 @@ db..find().hint( { $natural : -1 } ) # force the query to perform a [Update Operators](https://docs.mongodb.com/manual/reference/operator/update/ "Update Operators Documentation") ```sh -db..updateOne(filter, $set: {"": value}) # add or modify values -db..updateOne(filter, $set: {"": value}, {upsert: true}) # add or modify values, if attribute doesn't exists create it +db..replaceOne(filter, update, options) +db..updateOne(filter, update, {upsert: true}) # modify document if existing, insert otherwise -db..updateMany(filter, update) - -db..replaceOne(filter, { document }, options) +db..updateOne(filter, { "$push": { ... }, "$set": { ... }, { "$inc": { ... }, ... } }) ``` ### Delete