Options to configure a range.

interface RangeModifierRangeOptions {
    column: string;
    maxValue: string | number | boolean;
    minValue: string | number | boolean;
}

Properties

column: string

Column containing the values to filter.

maxValue: string | number | boolean

Maximum including value (<= operator).

minValue: string | number | boolean

Minimum including value (>= operator).