@zeepkist/graphql
    Preparing search index...

    Interface Record

    interface Record {
        nodeId: string;
        id: number;
        idUser: number;
        time: number;
        gameVersion: string;
        idLevel: number;
        modVersion: string;
        dateCreated: any;
        dateUpdated: any;
        splits: null | (null | number)[];
        speeds: null | (null | number)[];
        userByIdUser: null | User;
        levelByIdLevel: null | Level;
        recordMediasByIdRecord: RecordMediasConnection;
        personalBestGlobalsByIdRecord: PersonalBestGlobalsConnection;
        worldRecordGlobalsByIdRecord: WorldRecordGlobalsConnection;
        __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
    idUser: number
    time: number
    gameVersion: string
    idLevel: number
    modVersion: string
    dateCreated: any
    dateUpdated: any
    splits: null | (null | number)[]
    speeds: null | (null | number)[]
    userByIdUser: null | User

    Reads a single User that is related to this Record.

    levelByIdLevel: null | Level

    Reads a single Level that is related to this Record.

    recordMediasByIdRecord: RecordMediasConnection

    Reads and enables pagination through a set of RecordMedia.

    personalBestGlobalsByIdRecord: PersonalBestGlobalsConnection

    Reads and enables pagination through a set of PersonalBestGlobal.

    worldRecordGlobalsByIdRecord: WorldRecordGlobalsConnection

    Reads and enables pagination through a set of WorldRecordGlobal.

    __typename: "Record"