interface StringFacetFieldExpression {
    field: string;
    negate?: boolean;
    operator: StringFacetFieldOperator;
    value: string;
}

Hierarchy (View Summary)

Properties

field: string

The field name.

negate?: boolean

If true, the inverse expression will be created.

operator: StringFacetFieldOperator

The operator to use when comparing field and value.

value: string

The value to match against the field.