Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/ROOT/pages/syntax/temporal.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ Components of temporal instant values can be accessed as properties.
| `instant.offsetMinutes` | The _timezone_ offset in minutes | Integer | `-1080` to `+1080` | | {check-mark} | | {check-mark} |
| `instant.offsetSeconds` | The _timezone_ offset in seconds | Integer | `-64800` to `+64800` | | {check-mark} | | {check-mark} |
| `instant.epochMillis` | The number of milliseconds between `1970-01-01T00:00:00+0000` and the instant.footnote:[The expression `datetime().epochMillis` returns the equivalent value of the `timestamp()` function.] | Integer | Positive for instants after and negative for instants before `1970-01-01T00:00:00+0000` | | {check-mark} | | |
| `instant.epochSeconds` | The number of seconds between `1970-01-01T00:00:00+0000` and the instant.footnote:[For the _nanosecond_ part of the _epoch_ offset, the regular _nanosecond_ component (`instant.nanosecond`) can be used.] | Integer | Positive for instants after and negative for instants before `1970-01-01T00:00:00+0000` | | {check-mark} | | | |
| `instant.epochSeconds` | The number of seconds between `1970-01-01T00:00:00+0000` and the instant.footnote:[For the _nanosecond_ part of the _epoch_ offset, the regular _nanosecond_ component (`instant.nanosecond`) can be used.] | Integer | Positive for instants after and negative for instants before `1970-01-01T00:00:00+0000` | | {check-mark} | | |
|===

The following query shows how to extract the components of a _Date_ value:
Expand Down
Loading