Cursor for paging through results

interface SequenceRowsRetriveData {
    columns?: string[];
    cursor?: string;
    end?: number;
    limit?: number;
    start?: number;
}

Hierarchy (view full)

Properties

columns?: string[]

Columns to be included. Specified as list of column externalIds. In case this filter is not set, all available columns will be returned.

cursor?: string
end?: number

Get rows up to, but excluding, this row number.

"no limit"
limit?: number
start?: number

Lowest row number included.

0