문제

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