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!
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!
Try this
g.addV("User").property("createdDate",System.currentTimeMillis())
That worked for me on DSE Graph