neo4jclient - Neo4j .NET Client Wrap transactions -
is possible wrap several transactions 1 using neo4j client .net? problem need delete 1 node, relationships , end nodes attached these relationships 1 acid transaction. understand using rest batch possible. can neo4j .net client?
thank support!
do in single cypher call:
start n=node(123) match n-[r]->m delete r, m, n
in c#:
graphclient.cypher .start(new { n = (nodereference)123 }) .match("n-[r]->m") .delete("r, m, n") .executewithoutresults();
Comments
Post a Comment