I created a large neo4j graph connecting users to the videos they watch like user -> video in a social graph or network type of graph. There are about 9000 user nodes and 20000 video nodes.
If I try:
MATCH (u)-[:VIEW]->(v)
RETURN u,v
The graph says "Displaying 300000 nodes, 0 relationships." No graph nor relationships nor nodes are showing up.
If I try:
MATCH (u)-[:VIEW]->(v)
RETURN u,v
LIMIT 1000
The graph says "Displaying 1000 nodes, 1000 relationships (completed with 1000 additional relationships)." All graph and relationships and nodes show up.
If I try:
MATCH (u)-[:VIEW]->(v)
RETURN u,v
LIMIT 10000
No graph nor relationships nor nodes show up.
Is the first graph too large to show? How can I get it to show up?
Thank you in advance.