我在列表中有許多節點和邊。目前,我正在循環查看列表並使用非常慢的查詢插入每個節點。如何使用neo4jclient執行批量插入?批處理插入節點和關係neo4jclient
節點對象:
public static void addNode(GraphClient client, myNode node, string nodeName)
{
client.Cypher
.Create("(" + nodeName + ":Node {node})")
.WithParams(new { node })
.ExecuteWithoutResults();
}
當前方法用於插入節點的列表::
List<myNode> nodeList;
foreach(var elem in nodeList)
addNode(client, elem, "foo");
與其他答案類似的問題在這裏:https://stackoverflow.com/q/47360571/237509 – JOG