@zeepkist/graphql
    Preparing search index...

    Interface UserPointsHistory

    interface UserPointsHistory {
        nodeId: string;
        id: number;
        userId: number;
        points: number;
        totalPoints: number;
        rank: number;
        worldRecords: number;
        dateCreated: any;
        user: null | User;
        __typename: "UserPointsHistory";
    }
    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
    totalPoints: number
    rank: number
    worldRecords: number
    dateCreated: any
    user: null | User

    Reads a single User that is related to this UserPointsHistory.

    __typename: "UserPointsHistory"