Skip to content

Commit 4d2135e

Browse files
committed
Fixed tab stops
1 parent 066f444 commit 4d2135e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

cip/1.accepted/CIP2017-06-18-multiple-graphs.adoc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -581,8 +581,8 @@ FROM social-network
581581
// .. and match some data
582582
MATCH (a:Person)-[:KNOWS]->(b:Person)-[:KNOWS]->(c:Person) WHERE NOT (a)--(c)
583583
CONSTRUCT
584-
CLONE a, c
585-
NEW (a)-[:POSSIBLE_FRIEND]->(c)
584+
CLONE a, c
585+
NEW (a)-[:POSSIBLE_FRIEND]->(c)
586586
// All cardinality and bindings are removed here
587587
MATCH (a:Person)-[e:POSSIBLE_FRIEND]->(b:Person)
588588
// Return tabular and graph output
@@ -666,13 +666,13 @@ The next stage in the pipeline is to add the events information from *Events* to
666666
----
667667
[ 0] FROM Events
668668
[ 1] MATCH (c)<-[:IN_CITY]-(e)-[:IN_YEAR]->(y),
669-
[ 2] (e)-[:IS_A]->(et)
669+
[ 2] (e)-[:IS_A]->(et)
670670
[ 3] WITH *, CASE et.value
671-
[ 4] WHEN 'Criminal Event' THEN 'criminal'
672-
[ 5] WHEN 'Public Event' THEN 'public'
673-
[ 6] WHEN 'War Event' THEN 'war'
674-
[ 7] WHEN 'Royal Event' THEN 'royal'
675-
[ 8] END as eventType
671+
[ 4] WHEN 'Criminal Event' THEN 'criminal'
672+
[ 5] WHEN 'Public Event' THEN 'public'
673+
[ 6] WHEN 'War Event' THEN 'war'
674+
[ 7] WHEN 'Royal Event' THEN 'royal'
675+
[ 8] END as eventType
676676
[ 9] UPDATE PersonCityEvents
677677
[10] MERGE (c:City {name: c.value})
678678
[11] MERGE (e:Event {title: e.value, year: y.value, type: eventType})

0 commit comments

Comments
 (0)