I see that OgraphDatabase getEdgesBetweenVertexes has been deprecated.
is there some other method to get vertices using GraphFactory or rawGraph

OrientGraphFactory factory = new OrientGraphFactory(
"remote:localhost:2424/db","root","password").setupPool(1, 10);
factory.getTx().getRawGraph().declareIntent(new OIntentMassiveInsert());
OrientGraph graph = factory.getTx();
if( graph.getRawGraph().getEdgesBetweenVertexes(graph.getVertex("#12:0"),
graph.getVertex("#12:1"),"assigned") == null)
 graph.addEdge("class:assigned",graph.getVertex("#12:0"),graph.getVertex(
"#12:1"),"assigned");.
.
.
.

 

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"OrientDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to