@zeepkist/graphql
    Preparing search index...

    Interface FavouritesConnectionGenqlSelection

    A connection to a list of Favourite values.

    interface FavouritesConnectionGenqlSelection {
        nodes?: FavouriteGenqlSelection;
        edges?: FavouritesEdgeGenqlSelection;
        pageInfo?: PageInfoGenqlSelection;
        totalCount?: number | boolean;
        aggregates?: FavouriteAggregatesGenqlSelection;
        groupedAggregates?: FavouriteAggregatesGenqlSelection & {
            __args: {
                groupBy: FavouriteGroupBy[];
                having?: null | FavouriteHavingInput;
            };
        };
        __typename?: number
        | boolean;
        __scalar?: number | boolean;
    }
    Index

    Properties

    A list of Favourite objects.

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

    Information to aid in pagination.

    totalCount?: number | boolean

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

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

    groupedAggregates?: FavouriteAggregatesGenqlSelection & {
        __args: {
            groupBy: FavouriteGroupBy[];
            having?: null | FavouriteHavingInput;
        };
    }

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

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