@zeepkist/graphql
    Preparing search index...

    Interface SampledLevelMetadataConnection

    A connection to a list of SampledLevelMetadatum values.

    interface SampledLevelMetadataConnection {
        nodes: SampledLevelMetadatum[];
        edges: SampledLevelMetadataEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        __typename: "SampledLevelMetadataConnection";
    }
    Index

    Properties

    A list of SampledLevelMetadatum objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    __typename: "SampledLevelMetadataConnection"