@zeepkist/graphql
    Preparing search index...

    Interface UserRecordsByZslLevelResultManyToManyConnectionGenqlSelection

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

    interface UserRecordsByZslLevelResultManyToManyConnectionGenqlSelection {
        nodes?: RecordGenqlSelection;
        edges?: UserRecordsByZslLevelResultManyToManyEdgeGenqlSelection;
        pageInfo?: PageInfoGenqlSelection;
        totalCount?: number | boolean;
        aggregates?: RecordAggregatesGenqlSelection;
        groupedAggregates?: RecordAggregatesGenqlSelection & {
            __args: { groupBy: RecordGroupBy[]; having?: null | RecordHavingInput };
        };
        __typename?: number
        | boolean;
        __scalar?: number | boolean;
    }
    Index

    Properties

    A list of Record objects.

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

    Information to aid in pagination.

    totalCount?: number | boolean

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

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

    groupedAggregates?: RecordAggregatesGenqlSelection & {
        __args: { groupBy: RecordGroupBy[]; having?: null | RecordHavingInput };
    }

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

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