How to add vertices to gremlin server in a batch from Gremlin.NET?
问题 I am trying to populate a graph running in gremlin server with data from my SQL database. I would like to read the data from the database, iterate over the results and add them to the graph. This is done in a c# program so I am using Gremlin.NET bytecode. I CAN do this by doing the c# equivalent of the example found here: https://github.com/krlawrence/graph/blob/master/sample-code/RemoteAddBatch.java And the c# equivalent of the answer found here: Adding multiple vertices, changing one