How to get a list of top edges from one edge using Java API?
I have a vertex with number of edges. I want to retrieve top 10 edges of a specific class ranked by a property in this edge. How to do this?
The edge class is HasEdge
and the property I have is repetitions
.
So, initial idea is to do a query against the vertex but how to get the top list of edges?
vertes.query().??