@zeepkist/graphql
    Preparing search index...

    Interface VersionsConnectionGenqlSelection

    A connection to a list of Version values.

    interface VersionsConnectionGenqlSelection {
        nodes?: VersionGenqlSelection;
        edges?: VersionsEdgeGenqlSelection;
        pageInfo?: PageInfoGenqlSelection;
        totalCount?: number | boolean;
        aggregates?: VersionAggregatesGenqlSelection;
        groupedAggregates?: VersionAggregatesGenqlSelection & {
            __args: {
                groupBy: VersionGroupBy[];
                having?: null | VersionHavingInput;
            };
        };
        __typename?: number
        | boolean;
        __scalar?: number | boolean;
    }
    Index

    Properties

    A list of Version objects.

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

    Information to aid in pagination.

    totalCount?: number | boolean

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

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

    groupedAggregates?: VersionAggregatesGenqlSelection & {
        __args: {
            groupBy: VersionGroupBy[];
            having?: null | VersionHavingInput;
        };
    }

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

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