Queries We will learn how to to find the data from the database in this tutorial. To find documents in a collection we can filter the results using the query object. This query object is passed as the first argument of the find() method. We can limit the search with the help of this query object. If you have not learned about how to create a collection in MongoDB with Node.js and place the documents in that collection with node JS, then read the previous tutorial . This tutorial includes The find() method Query Object AND query OR query Conditional queries Regular Expression Query Special Query Options Querying inside Objects and Arrays Query Options Paging Sorting The find() method The syntax of the find() method on Collection is, collection . find ( query [ [ [ , fields ] , options ] , callback ] ) ; The “query” is an object representing query and specifying the conditions the documents need to be passed. The “fields”