WARNING: Version 5.x has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
Date Range Query Usage
editDate Range Query Usage
editFluent DSL example
editq .DateRange(c => c .Name("named_query") .Boost(1.1) .Field(p => p.Description) .GreaterThan(FixedDate) .GreaterThanOrEquals(DateMath.Anchored(FixedDate).RoundTo(TimeUnit.Month)) .LessThan("01/01/2012") .LessThanOrEquals(DateMath.Now) .Format("dd/MM/yyyy||yyyy") .TimeZone("+01:00") )
Object Initializer syntax example
editnew DateRangeQuery { Name = "named_query", Boost = 1.1, Field = "description", GreaterThan = FixedDate, GreaterThanOrEqualTo = DateMath.Anchored(FixedDate).RoundTo(TimeUnit.Month), LessThan = "01/01/2012", LessThanOrEqualTo = DateMath.Now, TimeZone = "+01:00", Format = "dd/MM/yyyy||yyyy" }
Example json output.
{ "range": { "description": { "_name": "named_query", "boost": 1.1, "format": "dd/MM/yyyy||yyyy", "gt": "2015-06-06T12:01:02.123", "gte": "2015-06-06T12:01:02.123||/M", "lt": "01/01/2012", "lte": "now", "time_zone": "+01:00" } } }