File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Scalar Subqueries are read-only subqueries that produce a single value in a sing
1414The result of a Scalar Subquery is the single value (in the single row) produced by the subquery.
1515
1616List Subqueries are read-only subqueries that produce a single value per row, and zero or more rows.
17- The result of a List Subquery is to collect the value of all rows produced by the subquery into a list .
17+ The result of a List Subquery is the list formed by collecting all of the values of all rows produced by the subquery.
1818
1919=== Syntax
2020
@@ -57,7 +57,7 @@ RETURN [
5757[source, cypher]
5858.Collect separate lists of friends and enemies
5959----
60- MATCH (me:Person{name:$my_name})
60+ MATCH (me:Person {name: $my_name})
6161RETURN me.name, [
6262 MATCH (me)-[:FRIEND]-(friend)
6363 RETURN friend.name
You can’t perform that action at this time.
0 commit comments