@zeepkist/graphql
    Preparing search index...

    Interface LevelPointsConnectionGenqlSelection

    A connection to a list of LevelPoint values.

    interface LevelPointsConnectionGenqlSelection {
        nodes?: LevelPointGenqlSelection;
        edges?: LevelPointsEdgeGenqlSelection;
        pageInfo?: PageInfoGenqlSelection;
        totalCount?: number | boolean;
        aggregates?: LevelPointAggregatesGenqlSelection;
        groupedAggregates?: LevelPointAggregatesGenqlSelection & {
            __args: {
                groupBy: LevelPointsGroupBy[];
                having?: null | LevelPointsHavingInput;
            };
        };
        __typename?: number
        | boolean;
        __scalar?: number | boolean;
    }
    Index

    Properties

    A list of LevelPoint objects.

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

    Information to aid in pagination.

    totalCount?: number | boolean

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

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

    groupedAggregates?: LevelPointAggregatesGenqlSelection & {
        __args: {
            groupBy: LevelPointsGroupBy[];
            having?: null | LevelPointsHavingInput;
        };
    }

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

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