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");.
.
.
.