I would like to traverse from a vertex, only following edges that match a particular expression (example: friendsWith.type="bestFriend"). How do I do this?
Furthermore, I have to run this operation for a bunch of vertices. Is it possible to keep things organized by the "head" of the traversals? Ideally the return would be:
[[start1, [list of all the vertices during traversal], [start2, [...]],...]

