In MongoDB, the db.collection.find() method is used to retrieve documents from a collection. This method returns a cursor to the retrieved documents.
The db.collection.find() method reads operations in mongoDB shell and retrieves documents containing all their fields.
Syntax:
db.COLLECTION_NAME.find({})
To retrieve all documents from a collection, put the query document ({}) empty. It will be like this:
db.COLLECTION_NAME.find()
For example: If you have a collection name "canteen" in your database which has some fields like foods, snacks, beverages, price etc. then you should use the following query to select all documents in the collection "canteen".
db.canteen.find()