@zeepkist/graphql
    Preparing search index...

    Interface SampledLevelsConnection

    A connection to a list of SampledLevel values.

    interface SampledLevelsConnection {
        nodes: SampledLevel[];
        edges: SampledLevelsEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        __typename: "SampledLevelsConnection";
    }
    Index

    Properties

    nodes: SampledLevel[]

    A list of SampledLevel objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    __typename: "SampledLevelsConnection"