Skip to content

Commit

Permalink
Textual improvements.
Browse files Browse the repository at this point in the history
And stylistic fixes for the style god.
  • Loading branch information
thobe committed Apr 18, 2017
1 parent 112c02e commit 518caa0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cip/1.accepted/CIP2017-03-29-Single-Value-Subqueries.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Scalar Subqueries are read-only subqueries that produce a single value in a sing
The result of a Scalar Subquery is the single value (in the single row) produced by the subquery.

List Subqueries are read-only subqueries that produce a single value per row, and zero or more rows.
The result of a List Subquery is to collect the value of all rows produced by the subquery into a list.
The result of a List Subquery is the list formed by collecting all of the values of all rows produced by the subquery.

=== Syntax

Expand Down Expand Up @@ -57,7 +57,7 @@ RETURN [
[source, cypher]
.Collect separate lists of friends and enemies
----
MATCH (me:Person{name:$my_name})
MATCH (me:Person {name: $my_name})
RETURN me.name, [
MATCH (me)-[:FRIEND]-(friend)
RETURN friend.name
Expand Down

0 comments on commit 518caa0

Please sign in to comment.