how to get current timestamp in a gremlin traversal?

1.7k Views Asked by At

Is there a way to do something like that in Gremlin traversals?:

g.addV("User").property("createdDate",now())

this should create a Vertex of label User with a field createdDate containing current timestamp.

Thanks!

2

There are 2 best solutions below

1
On BEST ANSWER

Try this

g.addV("User").property("createdDate",System.currentTimeMillis())

That worked for me on DSE Graph

0
On

You can try this,

g.addV("User").property("createdDate", new Date())

This will work in gremlin console.