@zeepkist/graphql
    Preparing search index...

    Interface SampledLevelItemsConnection

    A connection to a list of SampledLevelItem values.

    interface SampledLevelItemsConnection {
        nodes: SampledLevelItem[];
        edges: SampledLevelItemsEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        __typename: "SampledLevelItemsConnection";
    }
    Index

    Properties

    A list of SampledLevelItem objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    __typename: "SampledLevelItemsConnection"