質問

In the cypher manual, it is explained the 'with' clause can be used to chain queries together where the output of one part can be given as the input to the next part. Does that mean that a query using the 'with' clause is executed in several transactions (one for each part in the chain)?

役に立ちましたか?

解決

No, it does not use several transactions. A single query will be executed in one large transaction regardless of the number of WITH clauses it uses. The whole thing will either pass or fail as one unit.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top