Graph Academy - Cannot validate the new labels 'Actor' and 'Director'

Guys,
I am trying to validate the database after this simple exercise. I should create the Actor label (already ready in the exercise) and then modify to create the director. The change is simple as shown below. However, the database can't be validated. Any ideas?

MATCH (p:Person)-[:DIRECTED]->()
WITH DISTINCT p SET p:Director

Can you post the link to the question?

Gary,
Thanks for your answer. This is the URL.
https://graphacademy.neo4j.com/courses/importing-data/3-refactoring-imported-data/6-c-add-labels/

Found the issue, in the exercise of import the data, the there was an issue in the Movie PK definition.

image

It is instructed as tmdbId, but it should be movieId. This solves the issue...

1 Like