We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8075be commit d37a951Copy full SHA for d37a951
modules/ROOT/pages/styleguide.adoc
@@ -374,17 +374,15 @@ RETURN count(vehicle)
374
.Bad
375
[source, cypher, indent=0]
376
----
377
-CREATE (a:End {prop: 42}),
378
- (b:End {prop: 3}),
379
- (c:Begin {prop: id(a)})
+MATCH (kate:Person {name: 'Kate'})-[r:LIKES]-(c:Car)
+RETURN c.type
380
381
+
382
.Good
383
384
385
386
- (:End {prop: 3}),
387
- (:Begin {prop: id(a)})
+MATCH (:Person {name: 'Kate'})-[:LIKES]-(c:Car)
388
389
390
* Chain patterns together to avoid repeating variables.
0 commit comments