@zeepkist/graphql
    Preparing search index...

    Interface UserPoint

    interface UserPoint {
        nodeId: string;
        id: number;
        userId: number;
        points: number;
        dateCreated: any;
        dateUpdated: any;
        rank: number;
        worldRecords: null | number;
        user: null | User;
        __typename: "UserPoint";
    }
    Index

    Properties

    nodeId: string

    A globally unique identifier. Can be used in various places throughout the system to identify this single value.

    id: number
    userId: number
    points: number
    dateCreated: any
    dateUpdated: any
    rank: number
    worldRecords: null | number
    user: null | User

    Reads a single User that is related to this UserPoint.

    __typename: "UserPoint"