From d665ba1d379f03990b35fa199189dda1d4748d46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20Pryce-=C3=85klundh?= <112686610+JPryce-Aklundh@users.noreply.github.com> Date: Tue, 3 Dec 2024 13:45:53 +0100 Subject: [PATCH 1/4] add alias to call --- modules/ROOT/pages/subqueries/call-subquery.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/ROOT/pages/subqueries/call-subquery.adoc b/modules/ROOT/pages/subqueries/call-subquery.adoc index 0461834ce..6ec7e1ebe 100644 --- a/modules/ROOT/pages/subqueries/call-subquery.adoc +++ b/modules/ROOT/pages/subqueries/call-subquery.adoc @@ -1,5 +1,7 @@ = CALL subqueries :description: This page describes how to use Cypher's `CALL` subquery. +:page-aliases: clauses/call-subquery.adoc + The `CALL` clause can be used to invoke subqueries that execute operations within a defined scope, thereby optimizing data handling and query efficiency. Unlike other subqueries in Cypher, `CALL` subqueries can be used to perform changes to the database (e.g. xref:clauses/create.adoc[] new nodes). From 03fb85fc276ede1f19fb0b725dabb832be520cfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20Pryce-=C3=85klundh?= <112686610+JPryce-Aklundh@users.noreply.github.com> Date: Tue, 3 Dec 2024 13:48:37 +0100 Subject: [PATCH 2/4] another --- modules/ROOT/pages/subqueries/subqueries-in-transactions.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/ROOT/pages/subqueries/subqueries-in-transactions.adoc b/modules/ROOT/pages/subqueries/subqueries-in-transactions.adoc index cf83ee2a5..3e5131439 100644 --- a/modules/ROOT/pages/subqueries/subqueries-in-transactions.adoc +++ b/modules/ROOT/pages/subqueries/subqueries-in-transactions.adoc @@ -1,5 +1,7 @@ = CALL subqueries in transactions :description: This page describes how to use CALL...IN TRANSACTIONS subquery with Cypher. +:page-aliases: clauses/call-subquery.adoc + `CALL` subqueries can be made to execute in separate, inner transactions, producing intermediate commits. This can be useful when doing large write operations, like batch updates, imports, and deletes. From cc598b7e39cffeb8e23cc4a011e6439808be1975 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20Pryce-=C3=85klundh?= <112686610+JPryce-Aklundh@users.noreply.github.com> Date: Tue, 3 Dec 2024 13:56:25 +0100 Subject: [PATCH 3/4] fix --- modules/ROOT/pages/subqueries/call-subquery.adoc | 1 - modules/ROOT/pages/subqueries/subqueries-in-transactions.adoc | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/ROOT/pages/subqueries/call-subquery.adoc b/modules/ROOT/pages/subqueries/call-subquery.adoc index 6ec7e1ebe..30dbbb03a 100644 --- a/modules/ROOT/pages/subqueries/call-subquery.adoc +++ b/modules/ROOT/pages/subqueries/call-subquery.adoc @@ -2,7 +2,6 @@ :description: This page describes how to use Cypher's `CALL` subquery. :page-aliases: clauses/call-subquery.adoc - The `CALL` clause can be used to invoke subqueries that execute operations within a defined scope, thereby optimizing data handling and query efficiency. Unlike other subqueries in Cypher, `CALL` subqueries can be used to perform changes to the database (e.g. xref:clauses/create.adoc[] new nodes). diff --git a/modules/ROOT/pages/subqueries/subqueries-in-transactions.adoc b/modules/ROOT/pages/subqueries/subqueries-in-transactions.adoc index 3e5131439..4175f3c05 100644 --- a/modules/ROOT/pages/subqueries/subqueries-in-transactions.adoc +++ b/modules/ROOT/pages/subqueries/subqueries-in-transactions.adoc @@ -1,7 +1,6 @@ = CALL subqueries in transactions :description: This page describes how to use CALL...IN TRANSACTIONS subquery with Cypher. -:page-aliases: clauses/call-subquery.adoc - +:page-aliases: `CALL` subqueries can be made to execute in separate, inner transactions, producing intermediate commits. This can be useful when doing large write operations, like batch updates, imports, and deletes. From 4075b99d5f125ed5de35471889a32df3b781aa1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20Pryce-=C3=85klundh?= <112686610+JPryce-Aklundh@users.noreply.github.com> Date: Tue, 3 Dec 2024 14:05:06 +0100 Subject: [PATCH 4/4] fix2 --- modules/ROOT/pages/subqueries/subqueries-in-transactions.adoc | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/ROOT/pages/subqueries/subqueries-in-transactions.adoc b/modules/ROOT/pages/subqueries/subqueries-in-transactions.adoc index 4175f3c05..cf83ee2a5 100644 --- a/modules/ROOT/pages/subqueries/subqueries-in-transactions.adoc +++ b/modules/ROOT/pages/subqueries/subqueries-in-transactions.adoc @@ -1,6 +1,5 @@ = CALL subqueries in transactions :description: This page describes how to use CALL...IN TRANSACTIONS subquery with Cypher. -:page-aliases: `CALL` subqueries can be made to execute in separate, inner transactions, producing intermediate commits. This can be useful when doing large write operations, like batch updates, imports, and deletes.