@zeepkist/graphql
    Preparing search index...

    Interface PersonalBestGlobal

    interface PersonalBestGlobal {
        nodeId: string;
        id: number;
        recordId: number;
        userId: number;
        levelId: number;
        dateCreated: any;
        dateUpdated: any;
        record: null | Record;
        user: null | User;
        level: null | Level;
        __typename: "PersonalBestGlobal";
    }
    Index

    Properties

    nodeId: string

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

    id: number
    recordId: number
    userId: number
    levelId: number
    dateCreated: any
    dateUpdated: any
    record: null | Record

    Reads a single Record that is related to this PersonalBestGlobal.

    user: null | User

    Reads a single User that is related to this PersonalBestGlobal.

    level: null | Level

    Reads a single Level that is related to this PersonalBestGlobal.

    __typename: "PersonalBestGlobal"