interface StringFieldExpression {
    field: string;
    negate?: boolean;
    operator: StringOperator;
    values: string[];
}

Hierarchy (View Summary)

Properties

field: string

The field name.

negate?: boolean

If true, the inverse expression will be created.

operator: StringOperator

The operator to use when comparing field and values.

values: string[]

The values to match against the field.