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 e4537ac commit 6c501c1Copy full SHA for 6c501c1
source/fundamentals/crud/read-operations/limit.txt
@@ -50,9 +50,10 @@ Limit
50
-----
51
52
The following example queries the collection to return the top three
53
-longest books. It matches all the documents with the query, applies
54
-a ``sort`` on the ``length`` field to return books with longer lengths before
55
-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
56
+return only the ``3`` first results:
57
58
.. code-block:: javascript
59
:emphasize-lines: 4
0 commit comments