jetbrains-plugin-graph-database-support
jetbrains-plugin-graph-database-support copied to clipboard
Relationships not showing in Graph Database Console
I can't see the relationships between nodes in the Graph Database Console only the nodes.
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.