I am using latest gremlin.net (3.6.1) and NET 6. I am trying to create vertex/edge, and assign them with existing id, instead of letting server creating id for them.
In gremlin console, this could be done by
g.addV(‘part’).property(id, ‘59578’).
But in C#, this won’t get the job done apparently, with property key name of “id”. Neptune server always created UUID as id for newly created vertex/edge 🙁
gtx.AddV(“part”).Property(“id”, “59578”)
Ming Jiang is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.