How to convert timestamp into date in neo4j

Viewed 5257

Can someone please tell me that how to convert timestamp into date in neo4j. Suppose I have a long field to store millis.

Now i want to convert it into date through cypher.

NOTE- it would be great if it's possible without using apoc.

Thanks in advance

1 Answers

Yes surely you can do it

return date(datetime({epochmillis:timestamp()}))

more readings

Related