Skip to content

Commit 4ecf56a

Browse files
committed
Fix typo in property name in example queries
1 parent 0e513de commit 4ecf56a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

modules/ROOT/pages/subqueries/subqueries-in-transactions.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -959,7 +959,7 @@ CALL (row) {
959959
MERGE (y:Year {year: row.year})
960960
MERGE (m)-[r:RELEASED_IN]->(y)
961961
} IN 2 CONCURRENT TRANSACTIONS OF 10 ROWS ON ERROR RETRY FOR 3 SECONDS THEN CONTINUE REPORT STATUS AS status
962-
RETURN status.transactionID as transaction, status.committed AS successfulTransaction
962+
RETURN status.transactionId as transaction, status.committed AS successfulTransaction
963963
----
964964
// end::subqueries_in_transactions_deadlock_example[]
965965
@@ -1082,13 +1082,13 @@ CALL (row) {
10821082
MERGE (m:Movie {movieId: row.movieId})
10831083
MERGE (y:Year {year: row.year})
10841084
RETURN m, y
1085-
} IN CONCURRENT TRANSACTIONS OF 10 ROWS ON ERROR RETRY FOR 3 SECONDS THEN CONTINUE REPORT STATUS AS nodeStatus
1085+
} IN CONCURRENT TRANSACTIONS OF 10 ROWS ON ERROR RETRY THEN CONTINUE REPORT STATUS AS nodeStatus
10861086
CALL (m, y) {
10871087
MERGE (m)-[r:RELEASED_IN]->(y)
1088-
} IN TRANSACTIONS OF 10 ROWS ON ERROR RETRY FOR 3 SECONDS THEN CONTINUE REPORT STATUS AS relationshipStatus
1089-
RETURN nodeStatus.transactionID as nodeTransaction,
1088+
} IN TRANSACTIONS OF 10 ROWS ON ERROR RETRY THEN CONTINUE REPORT STATUS AS relationshipStatus
1089+
RETURN nodeStatus.transactionId as nodeTransaction,
10901090
nodeStatus.committed AS successfulNodeTransaction,
1091-
relationshipStatus.transactionID as relationshipTransaction,
1091+
relationshipStatus.transactionId as relationshipTransaction,
10921092
relationshipStatus.committed AS successfulRelationshipTransaction
10931093
----
10941094
// end::subqueries_in_transactions_deadlock_example_2[]

0 commit comments

Comments
 (0)