POST http://host/graph/edge/id?_inV=id1&_outV=id2&label=string&key=value
Edge e = graph.addEdge(id,graph.getVertex(id1),graph.getVertex(id2),label);
e.setProperty(key,value);
POST http://host/graph/edge/id?_inV=id1&_outV=id2&label=string&key=value
Edge e = graph.addEdge(id,graph.getVertex(id1),graph.getVertex(id2),label);
e.setProperty(key,value);
POST http://host/graph/indices/indexName?key=key1&value=value1&class=vertex&id=id1
Index index = graph.getIndex(indexName,...);
index.put(key,value,graph.getVertex(id1));
POST http://host/graph/indices/indexName?class=vertex&type=automatic&keys=[name,age]
graph.createIndex(indexName,Vertex.class,AUTOMATIC, {name, age})
POST http://host/graph/edge?_inV=id1&_outV=id2&label=string&key=value
Edge e = graph.addEdge(null,graph.getVertex(id1),graph.getVertex(id2),label);
e.setProperty(key,value);
Marks a parameter on an extension method as one that should receive attention from Rexster by
plugging in values that match the expected types from the request.
A Jersey InjectableProvider and Injectable that supplies Servlets which have a @Context
annotated RexsterApplication field with a RexsterApplicationImpl.