query: { filtered_query: { query: { match_all_query: {} }, filter: { range_filter: { field: "redemption_count", from: 0, to: 10, from_inclusive: false } } } }
Property | Type | Constraints | Description |
---|---|---|---|
field
|
String | mandatory=true, nullable=false | The search field. |
from
|
Object | The configured lower bound of the filter range. The lower bound is optional. If not given, the range is open ended with respect to the lower bound. | |
from_inclusive
|
Boolean | A flag indicating whether the lower bound of the range is inclusive (or exclusive). The default is true (which means that the given lower bound is inclusive). | |
to
|
Object | The configured upper bound of the filter range. The upper bound is optional. If not given, the range is open ended with respect to the upper bound. | |
to_inclusive
|
Boolean | A flag indicating whether the upper bound of the range is inclusive (or exclusive). The default is true (which means that the given upper bound is inclusive). |