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
8 changes: 7 additions & 1 deletion pages/fundamentals/data-types.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,13 @@ CREATE (:Flight {AIR123: datetime("2021-04-21T14:15:00Z")});

Maps for constructing `ZonedDateTime` values may have the following fields:
`year`, `month`, `day`, `hour`, `minute`, `second`, `millisecond`,
`microsecond` and `timezone`.
`microsecond` and `timezone`.
- If some numeric fields are omitted, they default to the lowest value for that field:
- `0` for `year`, `hour`, `minute`, `second`, `millisecond`, and `microsecond`.
- `1` for `month` and `day`.
- If the `timezone` is omitted, it defaults to UTC.
- If all numeric fields are omitted and only the `timezone` is specified, then a `datetime`
represents the **current time** in the that timezone.

There are two options for the `timezone` field:
* string: timezone name from the
Expand Down