Interface InputSearchRangeFilter

Range filter - provide different parameter combinations to define type of ranges. All parameters accept stringified float numbers.

Fully bounded range example: 10 < range < 100

{
"gt": "10",
"lt": "100"
}

Upper bounded range example: range < 100

{
"lt": 100
}

Lower bounded range example: range => 10

{
"gte": 10
}

Hierarchy

  • InputSearchRangeFilter

Properties

Properties

gt?: string

Greater than

gte?: string

Greater than or equals

lt?: string

Lower than

lte?: string

Lower than or equals

Generated using TypeDoc