@zeepkist/graphql
    Preparing search index...

    Interface RecordCondition

    A condition to be used against Record object types. All fields are tested for equality and combined with a logical ‘and.’

    interface RecordCondition {
        id?: number | null;
        userId?: number | null;
        time?: number | null;
        gameVersion?: string | null;
        levelId?: number | null;
        modVersion?: string | null;
        dateCreated?: any;
        dateUpdated?: any;
        splits?: (number | null)[] | null;
        speeds?: (number | null)[] | null;
    }
    Index

    Properties

    id?: number | null

    Checks for equality with the object’s id field.

    userId?: number | null

    Checks for equality with the object’s userId field.

    time?: number | null

    Checks for equality with the object’s time field.

    gameVersion?: string | null

    Checks for equality with the object’s gameVersion field.

    levelId?: number | null

    Checks for equality with the object’s levelId field.

    modVersion?: string | null

    Checks for equality with the object’s modVersion field.

    dateCreated?: any

    Checks for equality with the object’s dateCreated field.

    dateUpdated?: any

    Checks for equality with the object’s dateUpdated field.

    splits?: (number | null)[] | null

    Checks for equality with the object’s splits field.

    speeds?: (number | null)[] | null

    Checks for equality with the object’s speeds field.