jwalton922 / tableGraphExplorer

Table view for exploring a tinkerpop compatible database

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tableGraphExplorer

This project is for displaying in a Tinkerpop compatible graph. It uses a bootstrap table, and lets you traverse edges by nesting tables in tables. It's not the prettiest thing in the world, but if you want to do a quick data check it can be useful.

Image

Simple startup

Inside the project

  • cd dist/
  • python -m SimpleHTTPServer 8000

Getting Started Working on the project

Inside the project directory run

  • npm install
  • bower install

Serving the project locally

  • grunt serve
  • In browser open localhost:9000

Building the project

  • grunt build
  • Outputs to dist folder

Using TableGraphExplorer

The project will start with an initial load of data using a g.V().range(0,5). Use the <, -, or > actions to traverse the graph. The actions in the header row perform the action on all displayed vertices for that table. The action in the data rows perform the action for the vertex in that row. Below is a description of the action buttons.

Actions

  • < Gets incoming edges and the source vertices
  • ‐ Gets both incoming and outgoing edges and the other vertices
  • > Gets outgoing edges and the destination vertices
  • + Creates new table and initializes it with ID query of vertices

About

Table view for exploring a tinkerpop compatible database

License:Apache License 2.0


Languages

Language:JavaScript 99.1%Language:HTML 0.7%Language:CSS 0.1%