Documentation
    Preparing search index...

    Interface GetCheckpointsParams

    Return paginated list of checkpoints

    interface GetCheckpointsParams {
        cursor?: string | null;
        descendingOrder: boolean;
        limit?: number | null;
        signal?: AbortSignal;
    }
    Index

    Properties

    cursor?: string | null

    An optional paging cursor. If provided, the query will start from the next item after the specified cursor. Default to start from the first item if not specified.

    descendingOrder: boolean

    query result ordering, default to false (ascending order), oldest record first.

    limit?: number | null

    Maximum item returned per page, default to [QUERY_MAX_RESULT_LIMIT_CHECKPOINTS] if not specified.

    signal?: AbortSignal