@zeepkist/graphql
    Preparing search index...

    Interface UserZslRoundsByZslRoundResultManyToManyConnection

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

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

    Properties

    nodes: ZslRound[]

    A list of ZslRound objects.

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