interface NumericRangeFieldExpression {
    field: string;
    from: number;
    negate?: boolean;
    to: number;
}

Hierarchy (View Summary)

Properties

Properties

field: string

The field name.

from: number

The start of the range.

negate?: boolean

If true, the inverse expression will be created.

to: number

The end of the range.