I am new at Neo4j and I've been trying the queries in the official Neo4j training course (with their "Movies" dummy database example).
I have tried to run this query :
MATCH (actor)-[:ACTED_IN]->(movie)<-[:DIRECTED]-(director)
RETURN actor.name, movie.title, director.name;
It did work fine in the query window they have in their tutorial website.
But when I tried to run it in my own Neo4j browser, it only the table view as in the following picture:
While the graph view didn't show anything except for a Displaying 0 nodes, 0 relationships
message.
What did I do wrong? And How can I fix it?
Thanks!