Documentation
    Preparing search index...

    Interface ListTransactionsOptions<Include>

    interface ListTransactionsOptions<Include extends TransactionInclude = {}> {
        after?: string | null;
        before?: string | null;
        filter?: TransactionFilter;
        include?: Include & TransactionInclude;
        limit?: number;
        order?: "ascending" | "descending";
        signal?: AbortSignal;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    after?: string | null

    Return items strictly after this cursor in ledger order (usually the endCursor of an ascending page, or the startCursor of a descending page to poll for new items). Implies order: 'ascending', and cannot be combined with before.

    before?: string | null

    Return items strictly before this cursor in ledger order (usually the endCursor of a descending page). Implies order: 'descending', and cannot be combined with after.

    limit?: number
    order?: "ascending" | "descending"

    Order of returned results. Defaults to ascending (oldest first).

    signal?: AbortSignal