Home > doofinder > RangeFilter
RangeFilter interface
Represents a filter by numeric range.
Signature:
export interface RangeFilter
Properties
| Property | Type | Description |
|---|---|---|
| gt | number | Optional. Results will have a value greater than the provided value. |
| gte | number | Optional. Results will have a value greater or equal than the provided value. |
| lt | number | Optional. Results will have a value smaller than the provided value. |
| lte | number | Optional. Results will have a value smaller or equal than the provided value. |