Interface ConditionOperator

Condition Operator Type

interface ConditionOperator {
    field: string;
    operator: string;
    value?: any;
    variable?: string;
}

Properties

field: string

Field Name

operator: string

Operator, for example, "eq", "in".

value?: any

Field Value

variable?: string

Dimension variable name, which is used only in external data filter scenarios.