learn groovy
learn groovy

Reputation: 527

Any graphical interface of JanusGraph Gremlin Query

Currently, I'm executing my gremlin query via apache-tinkerpop-gremlin-console - this is command interface. I'm looking for some graphical interface where I can pass all my attributes and relation - which should from a gremlin query and retrieve the data in a graphical format. Is there any opensource tool which I can use it for my use case. Please note we are using Janusgraph and our data source is Hbase.

Upvotes: 0

Views: 2748

Answers (2)

fermmm
fermmm

Reputation: 1216

Graphexp does not work very well in my experience, I recommend this project instead: https://github.com/prabushitha/gremlin-visualizer

enter image description here

Upvotes: 1

Neelesh
Neelesh

Reputation: 736

I used Graphexp for visualization when i was working on Janusgraph. It is very lightweight, supports gremlin query execution as well as a nice visualization.

You don't need any third party dependecy to run it. Just a HTML file that you can open in browser.

It is not very advance and also has some issues here and there but it gets the job done.

Here is screenshot of the graph view my data:

enter image description here

Upvotes: 1

Related Questions