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

    Interface SearchPageRequest

    The page field of a search request body (cursor-forward or offset).

    interface SearchPageRequest {
        after?: string;
        before?: string;
        from?: number;
        limit?: number;
        [k: string]: unknown;
    }

    Indexable

    • [k: string]: unknown
    Index
    after?: string

    Cursor-forward: endCursor of the previous page.

    before?: string

    Cursor-backward: startCursor of the previous page (mutually exclusive with after/from).

    from?: number

    Offset: index to start from.

    limit?: number