@zeepkist/graphql
    Preparing search index...

    Interface RecordZslLevelsByZslLevelResultManyToManyConnection

    A connection to a list of ZslLevel values, with data from ZslLevelResult.

    interface RecordZslLevelsByZslLevelResultManyToManyConnection {
        nodes: ZslLevel[];
        edges: RecordZslLevelsByZslLevelResultManyToManyEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        aggregates: null | ZslLevelAggregates;
        groupedAggregates: null | ZslLevelAggregates[];
        __typename: "RecordZslLevelsByZslLevelResultManyToManyConnection";
    }
    Index

    Properties

    nodes: ZslLevel[]

    A list of ZslLevel objects.

    A list of edges which contains the ZslLevel, info from the ZslLevelResult, and the cursor to aid in pagination.

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    aggregates: null | ZslLevelAggregates

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

    groupedAggregates: null | ZslLevelAggregates[]

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

    __typename: "RecordZslLevelsByZslLevelResultManyToManyConnection"