Ch HaXam
Ch HaXam

Reputation: 499

how to visualize the complete graph in neo4j after importing the data and relationships

I have a question related to the NEO4J
when I create the nodes arround 40,000 and their relationships which are around 20,000 it means, 4K nodes and 6![enter image description here][1]K relationships which are less than 15MB for sure. when I run a query

"match (n) optional match (n)-[r]-() return n,r: " 

it starts to load and after waiting for long time it returns nothing (in graphical form). But in the resultant file it shows how many nodes and relationships I have but no graphs . I want to see the complete graph of my data. is there anyway to see how does it look like, its only to visualize. When I limit the query till 800 it works.
Is there anything I need to change in settings or in my system memory?
any suggestion for that?

Upvotes: 3

Views: 2394

Answers (1)

Brian Underwood
Brian Underwood

Reputation: 10856

The web console isn't very good for more than the hundreds of nodes scale. I'd suggest looking at Gephi:

http://gephi.github.io/

Alternatively you could use Linkurious, an online tool:

https://linkurio.us/

If you want to roll your own there are a number of choices out there. I like Sigma.js:

http://sigmajs.org/

Linkurious also has a library based on Sigma:

https://github.com/Linkurious/linkurious.js

EDIT: http://keylines.com/ is another online service like Linurious

Upvotes: 8

Related Questions