@zeepkist/graphql
    Preparing search index...

    Interface SampledLevelRequestsConnection

    A connection to a list of SampledLevelRequest values.

    interface SampledLevelRequestsConnection {
        nodes: SampledLevelRequest[];
        edges: SampledLevelRequestsEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        __typename: "SampledLevelRequestsConnection";
    }
    Index

    Properties

    A list of SampledLevelRequest objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    __typename: "SampledLevelRequestsConnection"