Skip to content

Latest commit

 

History

History
57 lines (45 loc) · 1.89 KB

File metadata and controls

57 lines (45 loc) · 1.89 KB

Function: QuerySlice

Returns a subset of rows from an existing query

Method Signature

QuerySlice(query=[query], offset=[integer], length=[integer])

Arguments

Argument Type Required Description Default
query query true The query object to which the rows should be returned.
offset integer true The first row to include in the new query.
length integer false The number of rows to include, defaults to all remaining rows. 0

Examples

Related