I am using DSE graph 5.X
.
Suppose I have two Vertex, Vertex A and Vertex B.
Dse documentation says about getting vertex and edges individually.
But what I am looking for is getting all vertexes of a particular label
or all edges between two vertexes.
How can I retrieve all edges between Vertex A and Vertex B in Java code?
E.g List<Edge> edges = graph.getEdges(fromVertex, toVertex);
Thanks you ..!