@zeepkist/graphql
    Preparing search index...

    Interface ZslSeasonsConnection

    A connection to a list of ZslSeason values.

    interface ZslSeasonsConnection {
        nodes: ZslSeason[];
        edges: ZslSeasonsEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        aggregates: null | ZslSeasonAggregates;
        groupedAggregates: null | ZslSeasonAggregates[];
        __typename: "ZslSeasonsConnection";
    }
    Index

    Properties

    nodes: ZslSeason[]

    A list of ZslSeason objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    aggregates: null | ZslSeasonAggregates

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

    groupedAggregates: null | ZslSeasonAggregates[]

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

    __typename: "ZslSeasonsConnection"