From c0b12ea7057cac1b3b95bb261100538debf49457 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Thu, 30 Nov 2023 12:31:41 +0100 Subject: [PATCH] add mongodb update operators for arrays --- docs/databases/mongo-db.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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