We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd2e165 commit 4e07a4eCopy full SHA for 4e07a4e
source/fundamentals/crud/read-operations/limit.txt
@@ -49,9 +49,10 @@ Limit
49
-----
50
51
The following example queries the collection to return the top three
52
-longest books. It matches all the documents with the query, applies
53
-a ``sort`` on the ``length`` field to return books with longer lengths before
54
-books, and applies a ``limit`` to return only ``3`` results:
+longest books. It matches all documents because the query filter is
+empty. Then, it applies a descending ``sort`` on the ``length`` field to
+return longer books before shorter books and a ``limit`` to
55
+return only the ``3`` first results:
56
57
.. code-block:: javascript
58
:emphasize-lines: 4
0 commit comments