mongodbHow to use findone in MongoDB?
MongoDB's findOne()
method is used to query a collection and return a single document that matches the specified query criteria.
Example
db.collection.findOne({name: "John"})
Output example
{
"_id": ObjectId("5f3d7f8d3f9f8d7f8d7f8d7f"),
"name": "John",
"age": 25
}
Code explanation
db.collection
: specifies the collection to queryfindOne()
: the method used to query the collection{name: "John"}
: the query criteria, in this case, the document must have aname
field with the valueJohn
Helpful links
More of Mongodb
- How to update many documents in MongoDB?
- How to do text search in MongoDB?
- How to list MongoDB users?
- How to rename a field in MongoDB?
- How to query with "not equal" condition in MongoDB?
- How to kill an operation in MongoDB?
- How to remove a field from MongoDB?
- How to use MongoDB pull?
- How to insert new document into MongoDB?
- How to perform a health check for MongoDB?
See more codes...