IdFilterOperation
contains(target: Id): IdFilterOperation
Check if a value is contains the target.
eq(target: Id): IdFilterOperation
Check if a value is equal to the target.
in(target: Id[]): IdFilterOperation
Check if a value is one of the ones in the target array.
not_contains(target: Id): IdFilterOperation
Check if a value is does not contain the target.
not_eq(target: Id): IdFilterOperation
Check if a value is not equal to the target.
not_in(target: Id[]): IdFilterOperation
Check if a value is none of the ones in the target array.