File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
modules/ROOT/pages/clauses Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -84,16 +84,16 @@ RETURN list
84841+d|Rows: 1
8585|===
8686
87- In the below example, the `WITH` clause binds all matched `Customer` nodes to a new variable, `chocolateCustomers `.
87+ In the below example, the `WITH` clause binds all matched `Customer` nodes to a new variable, `customers `.
8888The bound nodes are `MAP` values which can then be referenced from the new variable.
8989
9090.Create a new variable bound to matched nodes
9191// tag::clauses_with_new_variable[]
9292[source, cypher]
9393----
9494MATCH (c:Customer)-[:BUYS]->(:Product {name: 'Chocolate'})
95- WITH c AS customer
96- RETURN customer .firstName AS chocolateCustomer
95+ WITH c AS customers
96+ RETURN customers .firstName AS chocolateCustomers
9797----
9898// end::clauses_with_new_variable[]
9999
You can’t perform that action at this time.
0 commit comments