Skip to content

Commit

Permalink
update date handling for 3.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mdavis95 committed Oct 21, 2023
1 parent f5a102f commit ae52934
Showing 1 changed file with 31 additions and 2 deletions.
33 changes: 31 additions & 2 deletions _posts/2022-6-10-query-syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,40 @@ To search for ranges of textual or numeric values, use square or curly brackets,
* one-sided range; selects documents whose score field is larger than 2.5.

* `pubDate:[2022-01-01 TO 2022-02-01]`
* Date range example (defaults to start of day)
* Date range example

* `pubDate:[2021-06-21T05:00:00.00Z TO 2021-12-12T08:10:00.00Z]`
* `pubDate:[2021-06-21T05:00:00.000Z TO 2021-12-12T08:10:00.000Z]`
* Date range example with timestamp


## Dates
Dates can be represented the following formats:
* `yyyy`
* ex. 2021
* `yyyyy-MM` or `yyyy/MM`
* ex. 2020-05 or 2020/05
* `yyyy-MM-dd` or `yyyy/MM/dd`
* ex. 2004-04-01 or 2004/04/01
* `yyyy-MM-ddTHH:mm:ss.SSSZ` or `yyyy/MM/ddTHH:mm:ss.SSSZ`
* ex. 2012-08-03T11:59:00.000Z or 2012/08/03T11:59:00.000Z

Range query dates with / do not special handling, but otherwise they need to be quoted or escaped
* ex:
* `date:"2012/02/01"`
* `date:[2012/02/02 TO 2023/03/04]`

Sample queries
* `date:2022-04`
* equivalent to date:[2022-04-01T00:00:00.000Z TO 2022-04-30T23:59:59.999Z]
* `date:2022-04-02`
* equivalent to date:[2022-04-02T00:00:00.000Z TO 2022-04-02T23:59:59.999Z]
* `date:[2022-04 TO 2022-05]`
* equivalent to date:[2022-04-01T00:00:00.000Z TO 2022-05-31T23:59:59.999Z]
* `date:[2022-04 TO 2022-05}`
* equivalent to date:[2022-04-01T00:00:00.000Z TO 2022-05-01T00:00:00.000Z}
* `date:{2022-04 TO 2022-05}`
* equivalent to date:{2022-04-01T23:59:59.999Z TO 2022-05-01T00:00:00.000Z}

## Length Operations

Zulia indexes string fields with character length information of the input string and list fields with list length information
Expand Down

0 comments on commit ae52934

Please sign in to comment.