Skip to content
John Goodall edited this page May 14, 2014 · 1 revision

Query API

This document discusses the knowledge graph query API that the user interface and other systems can use to query the system.

General query

/graph?q=<gremlin_query>

For general gremlin queries, this route should simply pass through the query to rexster.

Summary node query

/graph/node

Return all of the types of nodes.

/graph/node?count=true

Return all node types and their counts.

Node type query

/graph/node/<type>

Return all nodes of a given type.

Specific node query

/graph/node/<type>/<id>

Return a specific node.

Clone this wiki locally