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 check the version of MongoDB?
- How to use watch in MongoDB?
- How to update one document in MongoDB?
- How to update many documents 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 use hint in MongoDB?
- How to work with time series data in MongoDB?
- How to use unwind in MongoDB?
See more codes...