Hi!
I've just started learning Neo4j (using the desktop application on Linux, Arch Linux), and I have problem understanding why there are less nodes than rows when switching between the node/table views in the app.
Using the code from this gist (unmodified from the tutorial), the following query shows different node/row count:
MATCH (tom:Person {name:"Tom Hanks"})-[:ACTED_IN]->(m)<-[:ACTED_IN]-(coActors) RETURN coActors
When on the node view, there are 34 nodes, whereas on the table view there are 39 rows, could someone explain it (or tell me if this is explained later on the tutorial).
By the way, the tutorial query is this (which shows 39 rows):
MATCH (tom:Person {name:"Tom Hanks"})-[:ACTED_IN]->(m)<-[:ACTED_IN]-(coActors) RETURN coActors.name
Thanks in advance!