@zeepkist/graphql
    Preparing search index...

    Interface FavoritesConnection

    A connection to a list of Favorite values.

    interface FavoritesConnection {
        nodes: Favorite[];
        edges: FavoritesEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        __typename: "FavoritesConnection";
    }
    Index

    Properties

    nodes: Favorite[]

    A list of Favorite objects.

    edges: FavoritesEdge[]

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    __typename: "FavoritesConnection"