Matthew Herbst
Matthew Herbst

Reputation: 32043

Is it possible to use the default graph from neo4j?

I'm using neo4j for a web-app I am creating. I have no problem getting data back from the REST API as I expect. However, I would prefer to not have to deal with lots of custom work in terms of graphing everything. I would love to just be able to embed/use the same graph that neo4j uses to show you query results at http://localhost:7474/browser/ on my page. I tried doing an iFrame to it but that had all sorts of problems.

Is this possible? I've been looking for an hour now trying to figure out how to do it or what libraries they use, but to no avail.

Upvotes: 2

Views: 316

Answers (1)

Michael Hunger
Michael Hunger

Reputation: 41706

You can check out my demo project, which uses two visualizations (two branches) one which is very close to what Neo4j Server uses (all js client code talking to a Neo4j server):

demo:

http://jexp.github.io/cy2neo/

branch master:

https://github.com/jexp/cy2neo

branch neo3d:

https://github.com/jexp/cy2neo/tree/neod3

Upvotes: 3

Related Questions