@zeepkist/graphql
    Preparing search index...

    Interface SampledUserPointsConnection

    A connection to a list of SampledUserPoint values.

    interface SampledUserPointsConnection {
        nodes: SampledUserPoint[];
        edges: SampledUserPointsEdge[];
        pageInfo: PageInfo;
        totalCount: number;
        __typename: "SampledUserPointsConnection";
    }
    Index

    Properties

    A list of SampledUserPoint objects.

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

    pageInfo: PageInfo

    Information to aid in pagination.

    totalCount: number

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

    __typename: "SampledUserPointsConnection"