NumberFilterOperation
contains(target: Number): NumberFilterOperation
Check if a value is contains the target.
eq(target: Number): NumberFilterOperation
Check if a value is equal to the target.
gt(target: Number): NumberFilterOperation
Check if a value is greater than the target.
gte(target: Number): NumberFilterOperation
Check if a value is greater than or equal to the target.
in(target: Number[]): NumberFilterOperation
Check if a value is one of the ones in the target array.
lt(target: Number): NumberFilterOperation
Check if a value is less than the target.
lte(target: Number): NumberFilterOperation
Check if a value is less than or equal to the target.
not_contains(target: Number): NumberFilterOperation
Check if a value is does not contain the target.
not_eq(target: Number): NumberFilterOperation
Check if a value is not equal to the target.
not_in(target: Number[]): NumberFilterOperation
Check if a value is none of the ones in the target array.