@zeepkist/graphql
    Preparing search index...

    Interface LevelsConnection

    A connection to a list of Level values.

    interface LevelsConnection {
        nodes: Level[];
        edges: LevelsEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        __typename: "LevelsConnection";
    }
    Index

    Properties

    nodes: Level[]

    A list of Level objects.

    edges: LevelsEdge[]

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    __typename: "LevelsConnection"