RexsterGraphResource
Jersey Resource for lineage metadata operations. Implements most of the GET operations of the Rexster API without the indexes. This is a subset of the Rexster REST API, designed to provide read-only methods for accessing the back-end graph. See https://github.com/tinkerpop/rexster/wiki/Basic-REST-API.
The following resources are applicable:
/graph/edges/{id}
GET | Fetches a single edge with a unique ID. For example,
| ||||||||
Parameters |
| ||||||||
Response Body |
|
/graph/vertices
GET | Fetches a list of vertices that match a property key and value. For example,
| ||||||||||||
Parameters |
| ||||||||||||
Response Body |
|
/graph/vertices/{id}
GET | Fetches a single vertex with a unique ID. For example,
| ||||||||
Parameters |
| ||||||||
Response Body |
|
/graph/vertices/{id}/{direction}
GET | Fetches a list of adjacent edges with a direction. For example,
| ||||||||||||
Parameters |
| ||||||||||||
Response Body |
|
/graph/vertices/properties/{id}
GET | Fetches properties for a single vertex with a unique ID. For example,
| ||||||||||||
Parameters |
| ||||||||||||
Response Body |
|