Hi All,
In gremlin, I can apply a route specification to a group of multiple roots like this:
g.v(1,2,3,4,5).out.out
Is there something similar in pacer? I can do
G.vertex(52).out.out and start from vertex 52, but is there some way to apply the route to an array of vertices in the graph? I have a query that I want to perform starting at several different vertices, and I want the results to be aggregated, and I can certainly do several separate queries and aggregate the results myself, but it seems like it would be more efficient to let the database do it. I just don't know how to express such a thing in pacer, and after digging through the help and the source code for awhile, can't even begin to figure out how pacer works or where to start looking for such an answer. Is this possible? If so, what's the best way to discover the API for something like this?
Thanks!
Mark