@zeepkist/graphql
    Preparing search index...

    Interface SampledFavoritesConnection

    A connection to a list of SampledFavorite values.

    interface SampledFavoritesConnection {
        nodes: SampledFavorite[];
        edges: SampledFavoritesEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        __typename: "SampledFavoritesConnection";
    }
    Index

    Properties

    A list of SampledFavorite objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    __typename: "SampledFavoritesConnection"