File tree Expand file tree Collapse file tree 3 files changed +2
-2
lines changed
ExerciseGuides/exercise-guides/intro-neo4j-exercises Expand file tree Collapse file tree 3 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -586,7 +586,7 @@ <h3>Exercise 15: Managing indexes (Preparations)</h3>
586586WHERE m.released < 2010
587587SET m:OlderMovie;
588588CREATE CONSTRAINT ON (p:Person) ASSERT p.name IS UNIQUE;
589- MATCH (p:Person)
589+ MATCH (p:Person)
590590WHERE NOT exists(p.born)
591591SET p.born = 0;
592592CREATE CONSTRAINT ON (p:Person) ASSERT exists(p.born);
Original file line number Diff line number Diff line change @@ -586,7 +586,7 @@ <h3>Exercise 16: Importing data (Preparations)</h3>
586586WHERE m.released < 2010
587587SET m:OlderMovie;
588588CREATE CONSTRAINT ON (p:Person) ASSERT p.name IS UNIQUE;
589- MATCH (p:Person)
589+ MATCH (p:Person)
590590WHERE NOT exists(p.born)
591591SET p.born = 0;
592592CREATE CONSTRAINT ON (p:Person) ASSERT exists(p.born);
You can’t perform that action at this time.
0 commit comments