Specify Documents to Return
Overview
In this guide, you can learn how to specify which documents to return from a read operation by using the following methods:
sort()
: Specifies the sort order for the returned documents.limit()
: Specifies the maximum number of documents to return from a query.skip()
: Specifies the number of documents to skip before returning query results.
Sample Data for Examples
To run the examples in this guide, use the following code snippet to insert documents
that describe books into the myDB.books
collection:
const myDB = client.db("myDB"); const myColl = myDB.collection("books"); await myColl.insertMany([ { "_id": 1, "name": "The Brothers Karamazov", "author": "Dostoyevsky", "length": 824 }, { "_id": 2, "name": "Les Misérables", "author": "Hugo", "length": 1462 }, { "_id": 3, "name": "Atlas Shrugged", "author": "Rand", "length": 1088 }, { "_id": 4, "name": "Infinite Jest", "author": "Wallace", "length": 1104 }, { "_id": 5, "name": "Cryptonomicon", "author": "Stephenson", "length": 918 }, { "_id": 6, "name": "A Dance With Dragons", "author": "Martin", "length": 1104 }, ]);
Note
You must chain a cursor method such as sort()
, limit()
,
skip()
, or project()
to a read operation before iterating the cursor.
If you specify a cursor method after iterating the cursor, the setting does
not apply to the read operation.
Note
Your query operation may return a reference to a cursor that contains matching documents. To learn how to examine data stored in the cursor, see the Access Data From a Cursor page.
Sort
Use the sort()
method to change the order in which read operations return
documents. This method tells MongoDB to order returned documents by the
values of one or more fields in a certain direction. To sort returned
documents by a field in ascending (lowest first) order, use a value of
1
. To sort in descending (greatest first) order instead, use -1
.
If you do not specify a sort, MongoDB does not guarantee the order of
query results.
The following example passes the sort document to a read operation to ensure that the operation returns books with longer lengths before books with shorter lengths:
// define an empty query document const query = {}; // sort in descending (-1) order by length const sortFields = { length: -1 }; const cursor = myColl.find(query).sort(sortFields); for await (const doc of cursor) { console.dir(doc); }
In this case, the number -1
tells the read operation to sort the
books in descending order by length. find()
returns the following
documents when this sort is used with an empty query:
{ "_id": 2, "title": "Les Misérables", "author": "Hugo", "length": 1462 } { "_id": 4, "title": "Infinite Jest", "author": "Wallace", "length": 1104 } { "_id": 6, "title": "A Dance with Dragons", "author": "Martin", "length": 1104 } { "_id": 3, "title": "Atlas Shrugged", "author": "Rand", "length": 1088 } { "_id": 5, "title": "Cryptonomicon", "author": "Stephenson", "length": 918 } { "_id": 1, "title": "The Brothers Karamazov", "author": "Dostoyevsky", "length": 824 }
Sometimes, the order of two or more documents is ambiguous using a specified sort. In the
preceding example, the documents that have title
values of "A Dance with Dragons"
and
"Infinite Jest"
both have a length
of 1104
, so the order in which they are
returned is not guaranteed. To resolve ties in your sorted results in a repeatable way,
add more fields to the sort document:
// define an empty query document const query = {}; // sort in ascending (1) order by length const sortFields = { length: 1, author: 1 }; const cursor = myColl.find(query).sort(sortFields); for await (const doc of cursor) { console.dir(doc); }
With the addition of the author
field to the sort document, the read operation sorts
matching documents first by length
then, if there is a tie, by author
. Matched
document fields are compared in the same order as fields are specified in the sort
document. find()
returns the following ordering of documents when this sort is used on
the documents matching the query:
{ "_id": 1, "title": "The Brothers Karamazov", "author": "Dostoyevsky", "length": 824 } { "_id": 5, "title": "Cryptonomicon", "author": "Stephenson", "length": 918 } { "_id": 3, "title": "Atlas Shrugged", "author": "Rand", "length": 1088 } { "_id": 6, "title": "A Dance with Dragons", "author": "Martin", "length": 1104 } { "_id": 4, "title": "Infinite Jest", "author": "Wallace", "length": 1104 } { "_id": 2, "title": "Les Misérables", "author": "Hugo", "length": 1462 }
Limit
Use the limit()
method to cap the number of documents that can be returned from a read
operation. This method specifies the maximum number of documents that the operation can
return, but the operation can return a smaller number of documents if there are not enough
documents present to reach the limit. If limit()
is used with the skip() method, the skip applies first and the limit only applies to the
documents left over after the skip.
This example performs the following actions:
Uses an empty query filter to match all documents in the collection
Calls the
sort()
method to apply a descending sort on thelength
field to the resultsCalls the
limit()
method to return only the first3
results
// define an empty query document const query = {}; // sort in descending (-1) order by length const sortFields = { length: -1 }; const limitNum = 3; const cursor = myColl.find(query).sort(sortFields).limit(limitNum); for await (const doc of cursor) { console.dir(doc); }
The code example above outputs the following three documents, sorted by length:
{ "_id": 2, "title": "Les Misérables", "author": "Hugo", "length": 1462 } { "_id": 6, "title": "A Dance With Dragons", "author": "Martin", "length": 1104 } { "_id": 4, "title": "Infinite Jest", "author": "Wallace", "length": 1104 }
Note
The order in which you call limit()
and sort()
does not matter because the
driver reorders the calls to apply the sort first. The following two calls are
equivalent:
myColl.find(query).sort({ length: -1 }).limit(3); myColl.find(query).limit(3).sort({ length: -1 });
Skip
Use the skip()
method to omit documents from the beginning of the read operation
results. You can combine skip()
with
sort() to omit the top
(for descending order) or bottom (for ascending order) results for a
given query. Since the order of documents returned is not guaranteed in
the absence of a sort, using skip()
without using sort()
omits
arbitrary documents.
If the value of skip()
exceeds the number of matched documents for
a query, then that query returns no documents.
This example queries the collection for the books with the fifth and sixth highest lengths by performing the following actions:
Uses an empty query filter to match all documents in the collection
Calls the
sort()
method to apply a descending sort to thelength
field, which returns longer books before shorter booksCalls the
skip()
method to omit the first four matching documents from the result
// define an empty query document const query = {}; const sortFields = { length: -1 }; const skipNum = 4; const cursor = myColl.find(query).sort(sortFields).skip(skipNum); for await (const doc of cursor) { console.dir(doc); }
Since the query skips the first four matching documents, the preceding code snippet prints the fifth and sixth highest length documents:
{ "_id": 5, "title": "Cryptonomicon", "author": "Stephenson", "length": 918 } { "_id": 1, "title": "The Brothers Karamazov", "author": "Dostoyevsky", "length": 824 }
Combine Limit, Sort, and Skip
You can combine the limit
, sort
, and skip
options in a single
operation. This allows you to set a maximum number of sorted documents to
return, skipping a specified number of documents before returning.
The following example returns documents with the length
value of
"1104"
. The results are sorted in alphabetical order, skipping the first
document and includes only the first result:
const query = {length: "1104"}; const cursor = myColl.find(query).sort({ title: 1 }).skip(1).limit(1); for await (const doc of cursor) { console.dir(doc); }
{ "_id": 4, "title": "Infinite Jest", "author": "Wallace", "length": 1104 }
Note
The order in which you call these methods doesn't change the documents that are returned.
Additional Information
For more information about specifying a query, see Query Operations.
For more information about retrieving documents, see Find Documents.
API Documentation
To learn more about any of the methods discussed in this guide, see the following API documentation: