@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 the totalItems value has been capped due to system limits. When true, totalItems is a lower bound and the actual number of matching items is greater than the reported value.

    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.