Retrieve documents matching a filter
Count number of documents in a collection
Perform aggregation operations on a collection
Retrieve all documents from a collection
db.users.find()
Fetches all documents from a collection. Useful for viewing all data in the collection.
Retrieve all products
db.products.find()
Retrieve unique values for a field
Add multiple documents at once
Update multiple documents at once