Here is the Cypher to get the list of movies Tom Hanks acted in:
MATCH (tom:Person {name: "Tom Hanks"})-[:ACTED_IN]->(tomHanksMovies)
RETURN tomHanksMovies.title as Movies
Some of the movies are as follows:
╒════════════════════════╕
│"Movies" │
╞════════════════════════╡
│"You've Got Mail" │
├────────────────────────┤
│"Apollo 13" │
├────────────────────────┤
│"Joe Versus the Volcano"│
├────────────────────────┤
│"That Thing You Do" │
├────────────────────────┤
│"Cloud Atlas" │
├────────────────────────┤
│"The Da Vinci Code" │
├────────────────────────┤