I am new to neo4j and working on the Movie example to learn. I have been trying to do the classic shortest path between Kevin Bacon and Meg Ryan query but also change the output of the columns. The query below has two different approaches. The first column I don't understand why it doesn't work. So I have two questions.
- What is the best way to output properties from nodes dependant on the type of node in a path?
- How can I mix up the output to achieve the output as Actor Name, Relationship, Movie Name, Relationship Actor Name. I can do this when not using a path but struggling when processing a path.
Query with example return attempts:
MATCH p=shortestPath(
(bacon:Person {name:"Kevin Bacon"})-[*]-(meg:Person {name:"Meg Ryan"})
)
RETURN
[n in nodes(p) | case when labels(n) = 'Person' then n.name when labels(n) = 'Movie' then n.title end ],
[a in nodes(p) where has(a.name) | a.name],
[b in nodes(p) where has(b.title) | b.title]
The output from this is (apologies no kudos to post pictures)
- null,null,null,null
- Kevin Bacon, Tom Cruise, Meg Ryan
- A Few Good Men, Top Gun
preferred output Kevin Bacon,A Few Good Men,Tom Cruise, Top Gun,Meg Ryan