@zeepkist/graphql
    Preparing search index...

    Interface ZslSeasonResultsConnection

    A connection to a list of ZslSeasonResult values.

    interface ZslSeasonResultsConnection {
        nodes: ZslSeasonResult[];
        edges: ZslSeasonResultsEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        aggregates: null | ZslSeasonResultAggregates;
        groupedAggregates: null | ZslSeasonResultAggregates[];
        __typename: "ZslSeasonResultsConnection";
    }
    Index

    Properties

    A list of ZslSeasonResult objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    aggregates: null | ZslSeasonResultAggregates

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

    groupedAggregates: null | ZslSeasonResultAggregates[]

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

    __typename: "ZslSeasonResultsConnection"