@resistdesign/voltra
    Preparing search index...

    Type Alias EdgePage<TMetadata>

    Page of edges returned from a query.

    type EdgePage<TMetadata = Record<string, unknown>> = {
        edges: Edge<TMetadata>[];
        nextCursor?: string;
    }

    Type Parameters

    • TMetadata = Record<string, unknown>
    Index

    Properties

    Properties

    edges: Edge<TMetadata>[]

    Returned edges for the page.

    nextCursor?: string

    Cursor string for the next page, if more results exist.