interface FieldFilter {
    field: string;
    operator: string;
    negate: boolean;
    value: any;
}

Properties

field: string

The dot-delimited path to the field being filtered

operator: string

The search operator, from CONST.OPERATORS

negate: boolean

Negate the filter, returning results which do NOT match the filter criteria

value: any

The value against which to test