@zeepkist/graphql
    Preparing search index...

    Interface RecordFilter

    A filter to be used against Record object types. All fields are combined with a logical ‘and.’

    interface RecordFilter {
        id?: null | IntFilter;
        userId?: null | IntFilter;
        time?: null | FloatFilter;
        gameVersion?: null | StringFilter;
        levelId?: null | IntFilter;
        modVersion?: null | StringFilter;
        dateCreated?: null | DatetimeFilter;
        dateUpdated?: null | DatetimeFilter;
        splits?: null | FloatListFilter;
        speeds?: null | FloatListFilter;
        recordMedias?: null | RecordToManyRecordMediaFilter;
        recordMediasExist?: null | boolean;
        personalBestGlobals?: null | RecordToManyPersonalBestGlobalFilter;
        personalBestGlobalsExist?: null | boolean;
        worldRecordGlobals?: null | RecordToManyWorldRecordGlobalFilter;
        worldRecordGlobalsExist?: null | boolean;
        user?: null | UserFilter;
        level?: null | LevelFilter;
        and?: null | RecordFilter[];
        or?: null | RecordFilter[];
        not?: null | RecordFilter;
    }
    Index

    Properties

    id?: null | IntFilter

    Filter by the object’s id field.

    userId?: null | IntFilter

    Filter by the object’s userId field.

    time?: null | FloatFilter

    Filter by the object’s time field.

    gameVersion?: null | StringFilter

    Filter by the object’s gameVersion field.

    levelId?: null | IntFilter

    Filter by the object’s levelId field.

    modVersion?: null | StringFilter

    Filter by the object’s modVersion field.

    dateCreated?: null | DatetimeFilter

    Filter by the object’s dateCreated field.

    dateUpdated?: null | DatetimeFilter

    Filter by the object’s dateUpdated field.

    splits?: null | FloatListFilter

    Filter by the object’s splits field.

    speeds?: null | FloatListFilter

    Filter by the object’s speeds field.

    recordMedias?: null | RecordToManyRecordMediaFilter

    Filter by the object’s recordMedias relation.

    recordMediasExist?: null | boolean

    Some related recordMedias exist.

    personalBestGlobals?: null | RecordToManyPersonalBestGlobalFilter

    Filter by the object’s personalBestGlobals relation.

    personalBestGlobalsExist?: null | boolean

    Some related personalBestGlobals exist.

    worldRecordGlobals?: null | RecordToManyWorldRecordGlobalFilter

    Filter by the object’s worldRecordGlobals relation.

    worldRecordGlobalsExist?: null | boolean

    Some related worldRecordGlobals exist.

    user?: null | UserFilter

    Filter by the object’s user relation.

    level?: null | LevelFilter

    Filter by the object’s level relation.

    and?: null | RecordFilter[]

    Checks for all expressions in this list.

    or?: null | RecordFilter[]

    Checks for any expressions in this list.

    not?: null | RecordFilter

    Negates the expression.