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

    Interface PaginateOptions

    interface PaginateOptions {
        maxPages?: number;
        mode?: PaginationMode;
        signal?: AbortSignal;
    }

    Hierarchy (View Summary)

    Index
    maxPages?: number

    Safety cap on pages fetched (default: unbounded). A non-positive value (0 or negative) fetches no pages at all — the cap is enforced before the first request, so it is always honoured exactly.

    How to advance. auto prefers a cursor, falls back to offset.

    signal?: AbortSignal

    Abort between pages; a fired signal stops further fetches.