@zeepkist/graphql
    Preparing search index...

    Interface UserZslLevelsByZslLevelResultManyToManyConnectionGenqlSelection

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

    interface UserZslLevelsByZslLevelResultManyToManyConnectionGenqlSelection {
        nodes?: ZslLevelGenqlSelection;
        edges?: UserZslLevelsByZslLevelResultManyToManyEdgeGenqlSelection;
        pageInfo?: PageInfoGenqlSelection;
        totalCount?: number | boolean;
        aggregates?: ZslLevelAggregatesGenqlSelection;
        groupedAggregates?: ZslLevelAggregatesGenqlSelection & {
            __args: {
                groupBy: ZslLevelGroupBy[];
                having?: null | ZslLevelHavingInput;
            };
        };
        __typename?: number
        | boolean;
        __scalar?: number | boolean;
    }
    Index

    Properties

    A list of ZslLevel objects.

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

    Information to aid in pagination.

    totalCount?: number | boolean

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

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

    groupedAggregates?: ZslLevelAggregatesGenqlSelection & {
        __args: {
            groupBy: ZslLevelGroupBy[];
            having?: null | ZslLevelHavingInput;
        };
    }

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

    __typename?: number | boolean
    __scalar?: number | boolean