@camunda8/orchestration-cluster-api
    Preparing search index...

    Type Alias SearchQueryPageResponse

    Pagination information about the search results.

    type SearchQueryPageResponse = {
        endCursor: EndCursor | null;
        hasMoreTotalItems: boolean;
        startCursor: StartCursor | null;
        totalItems: number;
    }
    Index

    Properties

    endCursor: EndCursor | null

    The cursor value for getting the next page of results. Use this in the after field of an ensuing request.

    hasMoreTotalItems: boolean

    Indicates whether there are more items matching the criteria beyond the returned items. This is useful for determining if additional requests are needed to retrieve all results.

    startCursor: StartCursor | null

    The cursor value for getting the previous page of results. Use this in the before field of an ensuing request.

    totalItems: number

    Total items matching the criteria.