The LIMIT argument is commonly used to specify a subset of results from the matching elements, similar to the LIMIT clause in SQL (e.g., SELECT LIMIT offset, count).
LIMIT
SELECT LIMIT offset, count
The maximum number of elements to include in the range. A negative count returns all elements from the offset.
The starting position of the range, zero based.
The
LIMITargument is commonly used to specify a subset of results from the matching elements, similar to theLIMITclause in SQL (e.g.,SELECT LIMIT offset, count).