jetbrains-plugin-graph-database-support
jetbrains-plugin-graph-database-support copied to clipboard
Error occurred: CorruptedFrameException: Max frame length of 65536 has been exceeded.
I'm trying to see whole graph (28 vertices, 30 edges) with query:
MATCH (n) OPTIONAL MATCH (n)-[r]-(m) RETURN n,r,m
and got error
Executing query: MATCH (n) OPTIONAL MATCH (n)-[r]-(m) RETURN n,r,m Error occurred: io.netty.handler.codec.CorruptedFrameException: Max frame length of 65536 has been exceeded.
Sure I can increase Max frame length but it won't solve because I have a plan to read graph with >10000 nodes
so,
How can I see whole graph?
Which database(type and version) are you trying to call?
Generally speaking, showing about a hundred nodes shouldn't be any problem. Most likely, showing complete database of thousands of nodes would be really slow and look like complete mess, so I can recommend thinking about different approaches in advance.