visualization does not match query output. My query: `MATCH (a)-[b:vid_progression]->(c) WHERE b.weight > 1 RETURN a, c, type(b), b.weight` returns all nodes and their relationships where weight is greater than 1 but relationships with weight=1 show up in the visualization
Ron van Weverwijk
Joshua Ruf I don't think this feedback form is the correct location for your question. For help, I think Discord is a better place: https://discord.com/invite/neo4j.
But for now; If I understand you correctly, you are executing this query using the Neo4j browser. By default the visualisation will display a "complete graph" by automatically connecting the nodes.
To change this behaviour, click the gear icon on the left bottom of the browser. In the browser settings uncheck the option "Connect result nodes".
When executing your query again you will see the nodes a and c.
If you would like to see the filtered relationships also update your query to:
MATCH (a)-[b:vid_progression]->(c) WHERE b.weight > 1 RETURN a, b, c
. Have fun!
Cheers, Ron