From c3aa766bfea0be366e5d45daaac5d2e819f1eb42 Mon Sep 17 00:00:00 2001 From: hvub Date: Mon, 10 Feb 2025 22:35:53 +0100 Subject: [PATCH] remove paragraph --- modules/ROOT/pages/clauses/with.adoc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/modules/ROOT/pages/clauses/with.adoc b/modules/ROOT/pages/clauses/with.adoc index c2939fa21..ebf4a1063 100644 --- a/modules/ROOT/pages/clauses/with.adoc +++ b/modules/ROOT/pages/clauses/with.adoc @@ -25,10 +25,6 @@ Another use is to filter on aggregated values. `WITH` is used to introduce aggregates which can then be used in predicates in `WHERE`. These aggregate expressions create new bindings in the results. -`WITH` is also used to separate reading from updating of the graph. -Every part of a query must be either read-only or write-only. -When going from a writing part to a reading part, the switch must be done with a `WITH` clause. - image:graph_with_clause.svg[] ////