@zeepkist/graphql
    Preparing search index...

    Interface LevelItemsConnection

    A connection to a list of LevelItem values.

    interface LevelItemsConnection {
        nodes: LevelItem[];
        edges: LevelItemsEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        __typename: "LevelItemsConnection";
    }
    Index

    Properties

    nodes: LevelItem[]

    A list of LevelItem objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    __typename: "LevelItemsConnection"