Hi,
I would like to traverse all out edges and collect data along the path (from edge and vertex). It works fine for small number of edges but it runs into time outs when the edge count is high (10K).
The traversal is something like:
g.V(id)//single source vertex
.outE("uses")//10K edges
.project("inVPropA","inVPropB","edgePropA","edgePropB","edgePropC","edgePropD")
.by(__.inV().values("A")).by(__.inV().values("B"))
.by(values("A")).by(values("B")).by(values("C")).by(values("D"))
Does anyone know of a faster traversal to get the same result or any suggestions?