From 4655556238af19c6f753d4e7993779241d053e54 Mon Sep 17 00:00:00 2001 From: Joel Bergstrand Date: Thu, 10 Jul 2025 09:39:00 +0200 Subject: [PATCH 1/2] Include updates --- .../ROOT/pages/queries/composed-queries/sequential-queries.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/pages/queries/composed-queries/sequential-queries.adoc b/modules/ROOT/pages/queries/composed-queries/sequential-queries.adoc index 310f33f9d..ae1f2fc99 100644 --- a/modules/ROOT/pages/queries/composed-queries/sequential-queries.adoc +++ b/modules/ROOT/pages/queries/composed-queries/sequential-queries.adoc @@ -387,4 +387,4 @@ RETURN customer.firstName AS plantCustomer [[next-unsupported-behavior]] == Known limitations -`NEXT` currently does not support `DISTINCT` nor aggregations when they are used in a `UNION` query, wrapped in braces or after a `USE` clause. +`NEXT` currently does not support updates, `DISTINCT` nor aggregations when they are used in a `UNION` query, wrapped in braces or after a `USE` clause. From 2ac9eb05d8b1c0271edc1505f657d76fb592efff Mon Sep 17 00:00:00 2001 From: JoelBergstrand Date: Thu, 10 Jul 2025 15:51:08 +0200 Subject: [PATCH 2/2] Update modules/ROOT/pages/queries/composed-queries/sequential-queries.adoc Co-authored-by: Richard Sill <156673635+rsill-neo4j@users.noreply.github.com> --- .../pages/queries/composed-queries/sequential-queries.adoc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/ROOT/pages/queries/composed-queries/sequential-queries.adoc b/modules/ROOT/pages/queries/composed-queries/sequential-queries.adoc index ae1f2fc99..d87c8dd59 100644 --- a/modules/ROOT/pages/queries/composed-queries/sequential-queries.adoc +++ b/modules/ROOT/pages/queries/composed-queries/sequential-queries.adoc @@ -387,4 +387,8 @@ RETURN customer.firstName AS plantCustomer [[next-unsupported-behavior]] == Known limitations -`NEXT` currently does not support updates, `DISTINCT` nor aggregations when they are used in a `UNION` query, wrapped in braces or after a `USE` clause. +`NEXT` currently does not support the following when they are used in a `UNION` query, wrapped in braces or after a `USE` clause: + +* updating queries such as `CREATE` or `MERGE`, +* `DISTINCT`, +* aggregations.