DotNet4Neo4j / Neo4jClient

.NET client binding for Neo4j
https://www.nuget.org/packages/Neo4jClient
Microsoft Public License
431 stars 146 forks source link

Support `IN TRANSACTIONS` for `CALL` #429

Closed cskardon closed 2 years ago

cskardon commented 2 years ago

See https://neo4j.com/docs/cypher-manual/current/clauses/call-subquery/#subquery-call-in-transactions

.Call(...).InTransactions();  // CALL ... IN TRANSACTIONS
.Call(...).InTransactions(1000); // CALL ... IN TRANSACTIONS OF 1000 ROWS

Only for Neo4j 4.4 onwards.