I've been running this cypher
CREATE (b:Request {created_at: timestamp(), depth:$depth})"
which relies on the cypher timestamp()
function.
The documentation calls out
The timestamp() function returns the equivalent value of datetime().epochMillis.
meaning I could do the time calculation on the server-side, though having access to the scalar functions I'd like to know if it's A) possible, and B) if possible how to use.
b = Node("Request", created_at= timestamp(), depth= 0)
did not even a little bit work.