Type Alias: FilterCondition

FilterCondition: object

Defines the standard condition structure used in both field and time filters.

Type declaration 

operator 

operator: FilterOperator

Required. The operator value for the filter. This must be a valid FilterOperator enum value.

values? 

optional values: FilterValues

An array of filter values. All the values in the array must be the same data type.

Example 

1const condition: FilterCondition = {
2  operator: FilterOperator.GreaterThan,
3  values: [100],
4};

DID THIS ARTICLE SOLVE YOUR ISSUE?
Let us know so we can improve!