@zeepkist/graphql
    Preparing search index...

    Interface UserZslSeasonsByZslSeasonResultManyToManyConnection

    A connection to a list of ZslSeason values, with data from ZslSeasonResult.

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

    Properties

    nodes: ZslSeason[]

    A list of ZslSeason objects.

    A list of edges which contains the ZslSeason, info from the ZslSeasonResult, and the 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: "UserZslSeasonsByZslSeasonResultManyToManyConnection"