@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;
        __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.

    __typename: "FavouritesConnection"