@camunda8/sdk
    Preparing search index...

    Interface SearchResponsePagination

    interface SearchResponsePagination {
        endCursor: string;
        startCursor: string;
        totalItems: number;
    }
    Index

    Properties

    endCursor: string

    The cursor for the last item in the result set. Use this in the searchAfter field of an ensuing request.

    startCursor: string

    The cursor for the first item in the result set. Use this in the searchBefore field of an ensuing request.

    totalItems: number

    Total items matching the criteria.