apoc.date.convert
Function APOC Core
apoc.date.convert(12345, 'ms', 'd') - convert a timestamp in one time unit into one of a different time unit
Usage Examples
The
The computed value will be in the unit specified by the |
The following converts 30 minutes into seconds:
RETURN apoc.date.convert(30, "minutes", "seconds") as outputInSeconds;
outputInSeconds |
---|
1800 |
The following converts the current datetime in epoch seconds into the number of days since 1st January 1970:
RETURN apoc.date.convert(datetime().epochSeconds, "seconds", "days") as outputInDays;
outputInDays |
---|
18571 |