mongodbHow to check if a document exists in MongoDB?
To check if a document exists in MongoDB, you can use the findOne() method. This method returns the first document that matches the query criteria.
Example
db.collection.findOne({name: "John"})
Output example
{
"_id" : ObjectId("5f3d7f9f8f9f9f9f9f9f9f9f"),
"name" : "John",
"age" : 25
}
Code explanation
db.collection: specifies the collection to queryfindOne(): method to query the collection{name: "John"}: query criteria
Helpful links
More of Mongodb
- How to use watch in MongoDB?
- How to use MongoDB queue?
- How to use unwind in MongoDB?
- How to empty an array in MongoDB?
- How to update one document in MongoDB?
- How to use transactions in MongoDB?
- What is MongoDB default port?
- How to remove a field from MongoDB?
- How to list MongoDB users?
- How to use MongoDB pull?
See more codes...