@zeepkist/graphql
    Preparing search index...

    Interface UserPointsConnectionGenqlSelection

    A connection to a list of UserPoint values.

    interface UserPointsConnectionGenqlSelection {
        nodes?: UserPointGenqlSelection;
        edges?: UserPointsEdgeGenqlSelection;
        pageInfo?: PageInfoGenqlSelection;
        totalCount?: number | boolean;
        aggregates?: UserPointAggregatesGenqlSelection;
        groupedAggregates?: UserPointAggregatesGenqlSelection & {
            __args: {
                groupBy: UserPointsGroupBy[];
                having?: null | UserPointsHavingInput;
            };
        };
        __typename?: number
        | boolean;
        __scalar?: number | boolean;
    }
    Index

    Properties

    A list of UserPoint objects.

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

    Information to aid in pagination.

    totalCount?: number | boolean

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

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

    groupedAggregates?: UserPointAggregatesGenqlSelection & {
        __args: {
            groupBy: UserPointsGroupBy[];
            having?: null | UserPointsHavingInput;
        };
    }

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

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