Skip to main content

The type that defines the fields to support filtering by a range of values.

Type that uses RangeValue

FilterField

Call that uses RangeValue

Fields

Field
Type
Description
end
Specifies the end or upper limit of the range. This can be empty which equates to greater than or equal to the start or lower limit.
exclusiveEnd
Specifies whether the end value is to be included in the range. For example, if end was 100, and exclusiveEnd was true, the end range would be < 100. But if it was set to false, it would be <= 100.
exclusiveStart
Specifies whether the start value is to be included in the range. For example, if start was 60, and exclusiveStart was true, the start range would be > 60. But if it was set to false, it would be >= 60.
range
Specifies whether the filter is for a range of values.
start
Specifies the start or lower limit of the range. This can be empty which equates to lesser than or equal to the end or upper limit.