IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Term Range Query Usage
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
Term Range Query Usage
editFluent DSL example
editq
.TermRange(c => c
.Name("named_query")
.Boost(1.1)
.Field(p => p.Description)
.GreaterThan("foo")
.GreaterThanOrEquals("foof")
.LessThan("bar")
.LessThanOrEquals("barb")
)
Object Initializer syntax example
editnew TermRangeQuery
{
Name = "named_query",
Boost = 1.1,
Field = "description",
GreaterThan = "foo",
GreaterThanOrEqualTo = "foof",
LessThan = "bar",
LessThanOrEqualTo = "barb"
}
Example json output.
{
"range": {
"description": {
"_name": "named_query",
"boost": 1.1,
"gt": "foo",
"gte": "foof",
"lt": "bar",
"lte": "barb"
}
}
}