Hey there,
I have two nodes, User, and System. These nodes have 3 types of relationships. Has_access, is_stakeholder, is_admin
My Cypher query wants all to show all users who have a stakeholder relationship to a system. My query is
MATCH n =(user:User)-[r:IS_STAKEHOLDER_OF]->(system:System)
RETURN n
When I run this in neo4j Browser, I get nodes that are displaying all three relationships instead of only Is_stakeholder
Weirdly, this does not occur in NeoDash, another front end for visualization, here is the graph produced by the same cypher query there
No changes to the data have been made. What is the difference that is causing this?