@zeepkist/graphql
    Preparing search index...

    Interface LevelMetadataConnection

    A connection to a list of LevelMetadatum values.

    interface LevelMetadataConnection {
        nodes: LevelMetadatum[];
        edges: LevelMetadataEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        __typename: "LevelMetadataConnection";
    }
    Index

    Properties

    A list of LevelMetadatum objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    __typename: "LevelMetadataConnection"