@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?: IntFilter | null;
        userId?: IntFilter | null;
        time?: FloatFilter | null;
        gameVersion?: StringFilter | null;
        levelId?: IntFilter | null;
        modVersion?: StringFilter | null;
        dateCreated?: DatetimeFilter | null;
        dateUpdated?: DatetimeFilter | null;
        splits?: FloatListFilter | null;
        speeds?: FloatListFilter | null;
        recordMedia?: RecordMediaFilter | null;
        recordMediaExists?: boolean | null;
        personalBestGlobals?: RecordToManyPersonalBestGlobalFilter | null;
        personalBestGlobalsExist?: boolean | null;
        worldRecordGlobals?: RecordToManyWorldRecordGlobalFilter | null;
        worldRecordGlobalsExist?: boolean | null;
        zslLevelResults?: RecordToManyZslLevelResultFilter | null;
        zslLevelResultsExist?: boolean | null;
        user?: UserFilter | null;
        level?: LevelFilter | null;
        and?: RecordFilter[] | null;
        or?: RecordFilter[] | null;
        not?: RecordFilter | null;
    }
    Index

    Properties

    id?: IntFilter | null

    Filter by the object’s id field.

    userId?: IntFilter | null

    Filter by the object’s userId field.

    time?: FloatFilter | null

    Filter by the object’s time field.

    gameVersion?: StringFilter | null

    Filter by the object’s gameVersion field.

    levelId?: IntFilter | null

    Filter by the object’s levelId field.

    modVersion?: StringFilter | null

    Filter by the object’s modVersion field.

    dateCreated?: DatetimeFilter | null

    Filter by the object’s dateCreated field.

    dateUpdated?: DatetimeFilter | null

    Filter by the object’s dateUpdated field.

    splits?: FloatListFilter | null

    Filter by the object’s splits field.

    speeds?: FloatListFilter | null

    Filter by the object’s speeds field.

    recordMedia?: RecordMediaFilter | null

    Filter by the object’s recordMedia relation.

    recordMediaExists?: boolean | null

    A related recordMedia exists.

    personalBestGlobals?: RecordToManyPersonalBestGlobalFilter | null

    Filter by the object’s personalBestGlobals relation.

    personalBestGlobalsExist?: boolean | null

    Some related personalBestGlobals exist.

    worldRecordGlobals?: RecordToManyWorldRecordGlobalFilter | null

    Filter by the object’s worldRecordGlobals relation.

    worldRecordGlobalsExist?: boolean | null

    Some related worldRecordGlobals exist.

    zslLevelResults?: RecordToManyZslLevelResultFilter | null

    Filter by the object’s zslLevelResults relation.

    zslLevelResultsExist?: boolean | null

    Some related zslLevelResults exist.

    user?: UserFilter | null

    Filter by the object’s user relation.

    level?: LevelFilter | null

    Filter by the object’s level relation.

    and?: RecordFilter[] | null

    Checks for all expressions in this list.

    or?: RecordFilter[] | null

    Checks for any expressions in this list.

    not?: RecordFilter | null

    Negates the expression.