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

    Type Alias SearchQueryPageResponse

    Pagination information about the search results.

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

    Properties

    endCursor?: EndCursor

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

    hasMoreTotalItems?: boolean

    Indicates if more results exist beyond the reported totalItems value. Due to system limitations, the totalItems value can be capped.

    startCursor?: StartCursor

    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.