Batch insert nodes and relations neo4jclient
问题 I have many nodes and edges in a list. Currently I'm looping through the list and inserting each node with a query which is very slow. How do I perform a batch insert using neo4jclient? Node object: public class myNode { public int id { get; set; } public int floor { get; set; } public double x { get; set; } public double y { get; set; } } Current method for inserting a node: public static void addNode(GraphClient client, myNode node, string nodeName) { client.Cypher .Create("(" + nodeName +