Interface CursorPaginationArgs

Defines the parameters for paginating query results, including the starting position and maximum number of items to return.

Specifies the starting position of the query result. Default is at the beginning if undefined. This is not a number and must come from the API.

Specifies the maximum number of items to return. Default is 25.

interface CursorPaginationArgs {
    cursor?: string;
    limit?: number;
}

Properties

Properties

cursor?: string
limit?: number
MMNEPVFCICPMFPCPTTAAATR