Reputation: 11
I generated one small graph of 3 nodes in gremlin (JanusGraph; in-memory database), I want to visualize this graph using Graphexp.
Please let me know how to integrate these two.
Upvotes: 0
Views: 635
Reputation: 13424
As you can see in the GitHub documentation:
Next step, configure the server settings on the bottom of the page. The default Gremlin server address is
localhost:8182
. You will have to specify the communication protocolwebsocket
orREST
and the gremlin server version. Graphexp is not able to handle secure connections yet and a contribution on this topic would be welcome.
The configuration is added to the file graphConf.js
.
Upvotes: 0