@zeepkist/graphql
    Preparing search index...

    Interface Record

    interface Record {
        nodeId: string;
        id: number;
        userId: number;
        time: number;
        gameVersion: string;
        levelId: number;
        modVersion: string;
        dateCreated: any;
        dateUpdated: any;
        splits: null | (null | number)[];
        speeds: null | (null | number)[];
        user: null | User;
        level: null | Level;
        recordMedias: RecordMediaConnection;
        personalBestGlobals: PersonalBestGlobalsConnection;
        worldRecordGlobals: WorldRecordGlobalsConnection;
        usersByPersonalBestGlobal: RecordUsersByPersonalBestGlobalManyToManyConnection;
        levelsByPersonalBestGlobal: RecordLevelsByPersonalBestGlobalManyToManyConnection;
        levelsByWorldRecordGlobal: RecordLevelsByWorldRecordGlobalManyToManyConnection;
        __typename: "Record";
    }
    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
    time: number
    gameVersion: string
    levelId: number
    modVersion: string
    dateCreated: any
    dateUpdated: any
    splits: null | (null | number)[]
    speeds: null | (null | number)[]
    user: null | User

    Reads a single User that is related to this Record.

    level: null | Level

    Reads a single Level that is related to this Record.

    recordMedias: RecordMediaConnection

    Reads and enables pagination through a set of RecordMedia.

    personalBestGlobals: PersonalBestGlobalsConnection

    Reads and enables pagination through a set of PersonalBestGlobal.

    worldRecordGlobals: WorldRecordGlobalsConnection

    Reads and enables pagination through a set of WorldRecordGlobal.

    Reads and enables pagination through a set of User.

    Reads and enables pagination through a set of Level.

    Reads and enables pagination through a set of Level.

    __typename: "Record"