@zeepkist/graphql
    Preparing search index...

    Interface ZslRoundsConnection

    A connection to a list of ZslRound values.

    interface ZslRoundsConnection {
        nodes: ZslRound[];
        edges: ZslRoundsEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        aggregates: null | ZslRoundAggregates;
        groupedAggregates: null | ZslRoundAggregates[];
        __typename: "ZslRoundsConnection";
    }
    Index

    Properties

    nodes: ZslRound[]

    A list of ZslRound objects.

    edges: ZslRoundsEdge[]

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    aggregates: null | ZslRoundAggregates

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

    groupedAggregates: null | ZslRoundAggregates[]

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

    __typename: "ZslRoundsConnection"