Skip to main content

RangeInput (Input)

Description

RangeInput class is used to filter fields of type date or number. It allows specifying a range with greater than, greater than or equal, less than, and less than or equal conditions.



Fields

NameDescription
gt - StringGreater than condition for date or number fields (value should be a JSON string)
gte - StringGreater than or equal condition for date or number fields (value should be a JSON string)
lt - StringLess than condition for date or number fields (value should be a JSON string)
lte - StringLess than or equal condition for date or number fields (value should be a JSON string)

input RangeInput {
gt: String
gte: String
lt: String
lte: String
}