@zeepkist/graphql
    Preparing search index...

    Interface FavouritesConnection

    A connection to a list of Favourite values.

    interface FavouritesConnection {
        nodes: Favourite[];
        edges: FavouritesEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        aggregates: null | FavouriteAggregates;
        groupedAggregates: null | FavouriteAggregates[];
        __typename: "FavouritesConnection";
    }
    Index

    Properties

    nodes: Favourite[]

    A list of Favourite objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    aggregates: null | FavouriteAggregates

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

    groupedAggregates: null | FavouriteAggregates[]

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

    __typename: "FavouritesConnection"