neueda / jetbrains-plugin-graph-database-support

Graph Databases support for JetBrains family IDEs.
Apache License 2.0
222 stars 56 forks source link

simple cypher query with incorrect results, missing relation #59

Closed McFoggy closed 5 years ago

McFoggy commented 7 years ago

I just started to use neo4j and your plugins is already a good client to help writing cypher queries, thanks for that.

Unfortunately, even with simple queries, results differ from your plugin and neo4j browser. Using the neo4j "Movie Graph" and the following simple query:

match (n:Person)-[r]-(m:Movie) where n.name = 'Clint Eastwood' return n,r,m;

Neo4jBrowser reports image

While the plugin only shows a single relation

image

knockergrowl commented 6 years ago

I'm having the same problem, but after looking closely at how the arrow is printed, I think both relations are actually rendered, but overlapped:

image

So it's more a problem of using different paths for the arrows or maybe using labels along with the arrow to list all the relations.