@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: ZslRoundAggregates | null;
        groupedAggregates: ZslRoundAggregates[] | null;
        __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: ZslRoundAggregates | null

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

    groupedAggregates: ZslRoundAggregates[] | null

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

    __typename: "UserZslRoundsByZslRoundResultManyToManyConnection"