Do not include confidential information, personal data, sensitive data, or other regulated data.
Launching the Docker container as in the starter tutorials from the website and following the Movies dataset I found this error in step 5/8
docker run \
--restart always \
--publish=7474:7474 --publish=7687:7687 \
neo4j:2025.06.2
A pattern in the graph is a specific arrangement of nodes and relationships that can be matched in the graph. To find which movies Tom Hanks have acted in, specify the pattern as follows:
This:
MATCH (p:Person {name: "Tom Hanks"})-[:ACTED_IN]->(movie)
RETURN p.movie
should be probably
MATCH (p:Person {name: "Tom Hanks"})-[:ACTED_IN]->(movie)
RETURN movie
Otherwise I get nothing
Thank you