Type parameters
-
T: StringedTypes
Hierarchy
-
FieldOperand<T>
- StringFieldOperand
Properties
Readonly not
Logical negation.
Methods
eq
-
The field’s value is equal to the one of another field or constant, or it is undefined.
Parameters
-
x: FieldOperand<T> | ConstOperandType<T> | null | ContextOperand
Field or constant that the field needs to be compared with.
Returns Filter
-
gt
-
The field’s value is greater than the one of another field or constant.
Parameters
-
x: FieldOperand<T> | ConstOperandType<T> | ContextOperand
Field or constant that the field needs to be compared with.
Returns Filter
-
gte
-
The field’s value is greater than or equal to the one of another field or constant.
Parameters
-
x: FieldOperand<T> | ConstOperandType<T> | ContextOperand
Field or constant that the field needs to be compared with.
Returns Filter
-
in
-
The field is included in a Many/Multiple type field as an item.
Parameters
-
x: FieldArrayOperand<T> | FieldArrayOperand<T[]> | ConstOperandType<T>[] | ContextOperand[]
Array that the field needs to be included in.
Returns Filter
-
like
-
The string is included in a specified variable or constant.
Parameters
-
x: string
String that the values of the items need to be included in.
Returns Filter
-
lt
-
The field’s value is less than the one of another field or constant.
Parameters
-
x: FieldOperand<T> | ConstOperandType<T> | ContextOperand
Field or constant that the field needs to be compared with.
Returns Filter
-
lte
-
The field’s value is less than or equal to the one of another field or constant.
Parameters
-
x: FieldOperand<T> | ConstOperandType<T> | ContextOperand
Field or constant that the field needs to be compared with.
Returns Filter
-
neq
-
The field’s value is not equal to the one of another field or constant, or it is defined.
Parameters
-
x: FieldOperand<T> | ConstOperandType<T> | null | ContextOperand
Field or constant that the field needs to be compared with.
Returns Filter
-
Filter by string collection field
The StringFieldOperand object provides a method to filter by String type fields.