@zeepkist/graphql
    Preparing search index...

    Interface ZslRoundResultsConnection

    A connection to a list of ZslRoundResult values.

    interface ZslRoundResultsConnection {
        nodes: ZslRoundResult[];
        edges: ZslRoundResultsEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        aggregates: null | ZslRoundResultAggregates;
        groupedAggregates: null | ZslRoundResultAggregates[];
        __typename: "ZslRoundResultsConnection";
    }
    Index

    Properties

    A list of ZslRoundResult objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    aggregates: null | ZslRoundResultAggregates

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

    groupedAggregates: null | ZslRoundResultAggregates[]

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

    __typename: "ZslRoundResultsConnection"