Hi,
I'm new to Neo4j so I'm wondering if I'm doing something wrong with the following example:
In a new database I created 2 nodes and 2 relations between these nodes:
create (:Message {id:1})
create (:Message {id:2})
create (:Message {id:1})-[:implies {model:'a'}]-(:Message {id:2})
create (:Message {id:1})-[:implies {model:'b'}]-(:Message {id:2})
When I executed the following query:
match (m1:Message {id:1})-[r:implies {model:'a'}]->(m2:Message {id:2})
return m1, r, m2
In Table mode, I correctly get only one row.
in Graph mode, the visualization is still displaying both relationships (model:'a' and model:'b')
Am I doing something wrong?
Best regards,
Arta