mongodbHow to use MongoDB pull?
MongoDB's $pull
operator is used to remove an item from an array. It takes two arguments: the first is the name of the field containing the array, and the second is the value to be removed.
Example
db.collection.update(
{ _id: 1 },
{ $pull: { arrayField: "valueToRemove" } }
)
Output example
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
Code explanation
db.collection.update
: This is the MongoDB command used to update a document in a collection.{ _id: 1 }
: This is the query used to select the document to update.{ $pull: { arrayField: "valueToRemove" } }
: This is the update operator used to remove an item from an array. The first argument is the name of the field containing the array, and the second is the value to be removed.
Helpful links
More of Mongodb
- How to join two collections in MongoDB?
- How to use watch in MongoDB?
- How to use triggers in MongoDB?
- How to use transactions in MongoDB?
- How to use MongoDB queue?
- How to create a many to many relation in MongoDB?
- How to insert new document into MongoDB?
- How to perform a health check for MongoDB?
- How to check if a document exists in MongoDB?
- How to bind IP addresses for MongoDB server?
See more codes...