@zeepkist/graphql
    Preparing search index...

    Interface LevelRequestsConnection

    A connection to a list of LevelRequest values.

    interface LevelRequestsConnection {
        nodes: LevelRequest[];
        edges: LevelRequestsEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        __typename: "LevelRequestsConnection";
    }
    Index

    Properties

    nodes: LevelRequest[]

    A list of LevelRequest objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    __typename: "LevelRequestsConnection"