Skip to content

Files

Latest commit

 

History

History
13 lines (8 loc) · 755 Bytes

Pagination.md

File metadata and controls

13 lines (8 loc) · 755 Bytes

Pagination

Instructs to limit the number of rows in transformed query resultset taking limitations of original query into account. In other words, if original query contains row limitation clause, it will be wrapped into a derived table and additional row limitation clause will be added ontop.

Properties

Name Type Description Notes
skip int Number of rows to skip from the top of original resultset. [optional]
take int Number of rows to get from orignal to new resultset. [optional]

[Back to Model list] [Back to API list] [Back to README]