You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -195,7 +194,7 @@ For more information, see xref:subqueries/call-subquery.adoc#import-variables[`C
195
194
== Bind values to variables
196
195
197
196
`WITH` can be used to assign the values of expressions to variables.
198
-
In the below query, the value of the xref:expressions/string-operators.adoc[`STRING` concatenation] expression is bound to a new variable `customerFullName`, and the value from the expression `chocolate.price * (1 - customer.discount)` is bound to `chocolateNetPrice`, both of which are then available in the `RETURN` clause.
197
+
In the below query, the value of the `STRING` concatenation expression is bound to a new variable `customerFullName`, and the value from the expression `chocolate.price * (1 - customer.discount)` is bound to `chocolateNetPrice`, both of which are then available in the `RETURN` clause.
199
198
200
199
.Bind values to variables
201
200
[source, cypher]
@@ -320,38 +319,6 @@ ORDER BY discountRates
320
319
1+d|Rows: 5
321
320
|===
322
321
323
-
[role=label--new-2025.05]
324
-
[[with-all-results]]
325
-
== Explicitly project values
326
-
327
-
`WITH ALL` can be used to explicitly project all values bound to a variable.
328
-
Using it is functionally the same as using simple `WITH`.
0 commit comments