I have simple query to generate graph
CREATE (n1:TNode {id: 1}),
(n2:TNode {id:2})
MERGE (n1)-[:CONNECTED {id: 1}]->(n2)
MERGE (n1)-[:CONNECTED {id: 2}]->(n2)
And then I retrieve using
MATCH (n1:TNode)-[r:CONNECTED {id : 1}]->(n2:TNode)
return n1, n2, r
Even though only one relationship is selected (also right pane says it) and in Table view I see only relationship, why graph displays two relationships. Two relationships are a.` id : 1` and b. ` id :2`.
Is there any way to display just one CONNECTED relationship?
