apoc.date.fromISO8601
Syntax |
|
||
Description |
Converts the given date |
||
Arguments |
Name |
Type |
Description |
|
|
The datetime to convert to ms. |
|
Returns |
|
Usage Examples
The |
The following converts a date string in ISO 8601 format to epoch millis:
RETURN apoc.date.fromISO8601('2020-11-04T12:21:33.000Z') AS outputInMs;
outputInMs |
---|
1604492493000 |