@roar-firebase-functions/core / ComparisonOperator
Type Alias: ComparisonOperator
ComparisonOperator =
"equals"
|"notEquals"
|"lessThan"
|"lessThanOrEqual"
|"greaterThan"
|"greaterThanOrEqual"
|"contains"
|"in"
|"notIn"
|"containsAny"
Defined in: packages/core/src/filters/base.filter.ts:15
Represents comparison operators used in filtering operations.
equals
: Checks if field equals the specified valuenotEquals
: Checks if field does not equal the specified valuelessThan
: Checks if field is less than the specified valuelessThanOrEqual
: Checks if field is less than or equal to the specified valuegreaterThan
: Checks if field is greater than the specified valuegreaterThanOrEqual
: Checks if field is greater than or equal to the specified valuecontains
: Checks if field contains the specified value (for strings or arrays)in
: Checks if field value is in the specified arraynotIn
: Checks if field value is not in the specified arraycontainsAny
: Checks if field contains any of the specified values