jetbrains-plugin-graph-database-support icon indicating copy to clipboard operation
jetbrains-plugin-graph-database-support copied to clipboard

Relationships not showing in Graph Database Console

Open nordllar opened this issue 6 years ago • 1 comments

I can't see the relationships between nodes in the Graph Database Console only the nodes.

nordllar avatar Oct 24 '19 07:10 nordllar

Hello @nordllar ,

If I understand your question correctly, you need to write a query that returns nodes and relationships. For example MATCH (n) RETURN n returns only nodes. To get all nodes and relationships use MATCH (n) OPTIONAL MATCH (n)-[r]-() RETURN n, r;.

If this does not answer your question, please provide the query that you are using.

dwitry avatar Oct 24 '19 13:10 dwitry