mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-25 09:28:27 +00:00
[Docs] Clarify accessing Date methods in painless (#33560)
The documentation currently tells users to use `doc['event_date'].value.getMillis` to access milliseconds in a date. It turns out the way it works is `doc['event_date'].value.millis`. This change corrects this and gives a hint at how other date related methods work.
This commit is contained in:
parent
a3e8b831ee
commit
6f3b3338ba
@ -198,13 +198,11 @@ POST hockey/player/1/_update
|
||||
==== Dates
|
||||
|
||||
Date fields are exposed as
|
||||
`ReadableDateTime` or
|
||||
so they support methods like
|
||||
`getYear`,
|
||||
and `getDayOfWeek`.
|
||||
To get milliseconds since epoch call
|
||||
`getMillis`.
|
||||
For example, the following returns every hockey player's birth year:
|
||||
`ReadableDateTime`, so they support methods like `getYear`, `getDayOfWeek`
|
||||
or e.g. getting milliseconds since epoch with `getMillis`. To use these
|
||||
in a script, leave out the `get` prefix and continue with lowercasing the
|
||||
rest of the method name. For example, the following returns every hockey
|
||||
player's birth year:
|
||||
|
||||
[source,js]
|
||||
----------------------------------------------------------------
|
||||
|
Loading…
x
Reference in New Issue
Block a user