Skips the specified number of items before returning the distinct query results.
The skip()
method skips the specified number of results before returning the rest.
For example, if you query a collection and 50 items match your query, but you set skip
to 10, the results skip the first 10 matching items and return the 11th through 50th items.
By default, skip
is set to 0.
Number of items to skip before returning the distinct query results.