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

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -