apoc.date.add(time INTEGER, unit STRING, addValue INTEGER, addUnit STRING) - adds a unit of specified time to the given timestamp.
|
|
apoc.date.convert(time INTEGER, unit STRING, toUnit STRING) - converts the given timestamp from one time unit into a timestamp of a different time unit.
|
|
apoc.date.convertFormat(temporal STRING, currentFormat STRING, convertTo STRING) - converts a STRING of one type of date format into a STRING of another type of date format.
|
Function Deprecated in Cypher 25
|
apoc.date.currentTimestamp() - returns the current Unix epoch timestamp in milliseconds.
|
Function Deprecated in Cypher 25
|
apoc.date.field(time INTEGER, unit STRING, timezone STRING) - returns the value of one field from the given date time.
|
Function Deprecated in Cypher 25
|
apoc.date.fields(date STRING, pattern STRING) - splits the given date into fields returning a MAP containing the values of each field.
|
Function Deprecated in Cypher 25
|
apoc.date.format(time INTEGER, unit STRING, format STRING, timezone STRING) - returns a STRING representation of the time value.
The time unit (default: ms), date format (default: ISO), and time zone (default: current time zone) can all be changed.
|
Function Deprecated in Cypher 25
|
apoc.date.fromISO8601(time STRING) - converts the given date STRING (ISO8601) to an INTEGER representing the time value in milliseconds.
|
Function Deprecated in Cypher 25
|
apoc.date.parse(time STRING, unit STRING, format STRING, timezone STRING) - parses the given date STRING from a specified format into the specified time unit.
|
Function Deprecated in Cypher 25
|
apoc.date.systemTimezone() - returns the display name of the system time zone (e.g. Europe/London).
|
|
apoc.date.toISO8601(time INTEGER, unit STRING) - returns a STRING representation of a specified time value in the ISO8601 format.
|
Function Deprecated in Cypher 25
|
apoc.date.toYears(value ANY, format STRING) - converts the given timestamp or the given date into a FLOAT representing years.
|
|