From f8cbfe0d4fff7148bed88b22b2c6a14df4c021f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20Pryce-=C3=85klundh?= <112686610+JPryce-Aklundh@users.noreply.github.com> Date: Tue, 4 Mar 2025 09:54:17 +0100 Subject: [PATCH] fix --- modules/ROOT/pages/clauses/index.adoc | 3 +++ .../deprecations-additions-removals-compatibility.adoc | 7 ------- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/modules/ROOT/pages/clauses/index.adoc b/modules/ROOT/pages/clauses/index.adoc index 659bfa3fc..07192fe4f 100644 --- a/modules/ROOT/pages/clauses/index.adoc +++ b/modules/ROOT/pages/clauses/index.adoc @@ -44,6 +44,9 @@ m| xref::clauses/with.adoc[WITH ... [AS]] m| xref::clauses/unwind.adoc[UNWIND ... [AS]] | Expands a list into a sequence of rows. +m| xref::clauses/filter.adoc[FILTER] +| Adds filters to queries. + m| xref::clauses/finish.adoc[FINISH] | Defines a query to have no result. diff --git a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc index 91d600404..9d2a4e1af 100644 --- a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc +++ b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc @@ -216,13 +216,6 @@ FILTER x > 2 RETURN x ---- -[source, cypher, role="noheader"] ----- -UNWIND [1, 2, 3, 4, 5, 6] AS x -FILTER x > 2 -RETURN x ----- - [source, cypher, role="noheader"] ---- LOAD CSV WITH HEADERS FROM 'file:///companies.csv' AS row