@zeepkist/graphql
    Preparing search index...

    Interface LevelZslRoundsByZslLevelManyToManyConnection

    A connection to a list of ZslRound values, with data from ZslLevel.

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

    Properties

    nodes: ZslRound[]

    A list of ZslRound objects.

    A list of edges which contains the ZslRound, info from the ZslLevel, and the 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: "LevelZslRoundsByZslLevelManyToManyConnection"