Skip to content

fixed bug in query in movies guide #49

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions documentation/movies-upx.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -764,8 +764,8 @@ To find which movies Tom Hanks have acted in, specify the pattern as follows:

[source,cypher]
----
MATCH (p:Person {name: "Tom Hanks"})-[:ACTED_IN]->(movie)
RETURN p.movie
MATCH (p:Person {name: "Tom Hanks"})-[:ACTED_IN]->(m:Movie)
RETURN m.title
----

Can you specify a pattern to find who directed _Cloud Atlas_?
Expand Down
4 changes: 2 additions & 2 deletions documentation/movies.workspace.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -802,8 +802,8 @@ NOTE: You might need to switch back to the "Graph" view.

[source,cypher]
----
MATCH (p:Person {name: "Tom Hanks"})-[:ACTED_IN]->(movie)
RETURN p.movie
MATCH (p:Person {name: "Tom Hanks"})-[:ACTED_IN]->(m:Movie)
RETURN m.title
----

Can you specify a pattern to find who directed _Cloud Atlas_?
Expand Down