@zeepkist/graphql
    Preparing search index...

    Interface SampledLevelPointsConnection

    A connection to a list of SampledLevelPoint values.

    interface SampledLevelPointsConnection {
        nodes: SampledLevelPoint[];
        edges: SampledLevelPointsEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        __typename: "SampledLevelPointsConnection";
    }
    Index

    Properties

    A list of SampledLevelPoint objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    __typename: "SampledLevelPointsConnection"