Cursor for paging through results

interface ListRawRows {
    columns?: string[];
    cursor?: string;
    limit?: number;
    maxLastUpdatedTime?: Date;
    minLastUpdatedTime?: Date;
    onlyRowKeys?: boolean;
}

Hierarchy (view full)

Properties

columns?: string[]

Specify this to limit columns to retrieve. Array of column keys

cursor?: string
limit?: number
maxLastUpdatedTime?: Date

Inclusive filter for last updated time. When specified only rows updated before this time will be returned

minLastUpdatedTime?: Date

Exclusive filter for last updated time. When specified only rows updated after this time will be returned

onlyRowKeys?: boolean

Set this to true if you only want to fetch row keys