diff --git a/docs/databases/mongo-db.md b/docs/databases/mongo-db.md index cf8e586..809db6a 100644 --- a/docs/databases/mongo-db.md +++ b/docs/databases/mongo-db.md @@ -40,9 +40,13 @@ db..insertOne({document}) # implicit collection creation ```json linenums="1" /* --- Update operators --- */ -{ "$inc": { "": "", ... } } // Increment value -{ "$set": { "": "", ... } } // Set value +{ "$inc": { "": "", ... } } // increment value +{ "$set": { "": "", ... } } // set value +{ "$unsetset": { "": "true", ... } } // unset value { "$push": { "": "", ... } } // add a value to an array field or turn field into array +{ "$pop": { "": <-1 | 1>, ... } } // remove first or last array element +{ "$pull": { "": "", ... } } // remove a specific item in the array +{ "$pullAll": { "": [ "", "" ... ], ... } } // remove all specified values from array /* --- Query Operators --- */ { "": { "$in": [ "", "", ...] } } // Membership