@zeepkist/graphql
    Preparing search index...

    Interface RecordsConnection

    A connection to a list of Record values.

    interface RecordsConnection {
        nodes: Record[];
        edges: RecordsEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        aggregates: null | RecordAggregates;
        groupedAggregates: null | RecordAggregates[];
        __typename: "RecordsConnection";
    }
    Index

    Properties

    nodes: Record[]

    A list of Record objects.

    edges: RecordsEdge[]

    A list of edges which contains the Record and cursor to aid in pagination.

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

    The count of all Record you could get from the connection.

    aggregates: null | RecordAggregates

    Aggregates across the matching connection (ignoring before/after/first/last/offset)

    groupedAggregates: null | RecordAggregates[]

    Grouped aggregates across the matching connection (ignoring before/after/first/last/offset)

    __typename: "RecordsConnection"