@zeepkist/graphql
    Preparing search index...

    Interface SampledRecordFilter

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

    interface SampledRecordFilter {
        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;
        and?: null | SampledRecordFilter[];
        or?: null | SampledRecordFilter[];
        not?: null | SampledRecordFilter;
    }
    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.

    and?: null | SampledRecordFilter[]

    Checks for all expressions in this list.

    or?: null | SampledRecordFilter[]

    Checks for any expressions in this list.

    not?: null | SampledRecordFilter

    Negates the expression.