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