Skip to content

Commit 6926d2c

Browse files
more corrections
1 parent db449c1 commit 6926d2c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

modules/ROOT/pages/clauses/match.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,10 @@ RETURN n.name AS name, n.title AS title
110110
2+|Rows: 7
111111
|===
112112

113-
.Node pattern using the `AND` (`&`) and negation (`!`) label expression
113+
.Node pattern using negation (`!`) label expression
114114
[source, cypher]
115115
----
116-
MATCH (n:!Director&!Movie)
116+
MATCH (n:!Movie)
117117
RETURN labels(n) AS label, count(n) AS labelCount
118118
----
119119

@@ -236,7 +236,7 @@ It is possible to specify the type of a relationship in a relationship pattern b
236236
.Relationship pattern filtering on the `ACTED_IN` relationship type
237237
[source, cypher]
238238
----
239-
MATCH (:Movie {title: 'Wall Street'})<-[:ACTED_IN]-(actor)
239+
MATCH (:Movie {title: 'Wall Street'})<-[:ACTED_IN]-(actor:Person)
240240
RETURN actor.name AS actor
241241
----
242242

@@ -452,8 +452,8 @@ RETURN director.name AS director, movie.title AS movieTitle
452452
|===
453453

454454
A variable can be implicitly carried over to the following clause by being referenced in another operation.
455-
A variable can also be explicitly passed to the following clause using the `WITH` clause.
456-
If a variable is neither implicitly nor explicitly carried over, it will be discarded and unavailable for reference later in the query.
455+
A variable can also be explicitly passed to the following clause using the xref:clauses/with.adoc[`WITH`] clause.
456+
If a variable is neither implicitly nor explicitly carried over to its following clause, it will be discarded and unavailable for reference later in the query.
457457

458458
.Using `WITH` and multiple `MATCH` clauses
459459
[source, cypher]

0 commit comments

Comments
 (0)