@zeepkist/graphql
    Preparing search index...

    Interface VersionsConnection

    A connection to a list of Version values.

    interface VersionsConnection {
        nodes: Version[];
        edges: VersionsEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        aggregates: null | VersionAggregates;
        groupedAggregates: null | VersionAggregates[];
        __typename: "VersionsConnection";
    }
    Index

    Properties

    nodes: Version[]

    A list of Version objects.

    edges: VersionsEdge[]

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    aggregates: null | VersionAggregates

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

    groupedAggregates: null | VersionAggregates[]

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

    __typename: "VersionsConnection"