@zeepkist/graphql
    Preparing search index...

    Interface ZslLevelResultsConnectionGenqlSelection

    A connection to a list of ZslLevelResult values.

    interface ZslLevelResultsConnectionGenqlSelection {
        nodes?: ZslLevelResultGenqlSelection;
        edges?: ZslLevelResultsEdgeGenqlSelection;
        pageInfo?: PageInfoGenqlSelection;
        totalCount?: number | boolean;
        aggregates?: ZslLevelResultAggregatesGenqlSelection;
        groupedAggregates?: ZslLevelResultAggregatesGenqlSelection & {
            __args: {
                groupBy: ZslLevelResultGroupBy[];
                having?: null | ZslLevelResultHavingInput;
            };
        };
        __typename?: number
        | boolean;
        __scalar?: number | boolean;
    }
    Index

    Properties

    A list of ZslLevelResult objects.

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

    Information to aid in pagination.

    totalCount?: number | boolean

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

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

    groupedAggregates?: ZslLevelResultAggregatesGenqlSelection & {
        __args: {
            groupBy: ZslLevelResultGroupBy[];
            having?: null | ZslLevelResultHavingInput;
        };
    }

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

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