I have a cosmos graph db. starting from a set of nodes, e.g. g.V().has('category','abc), I want to traverse backwards recursively and return the edge ids per vertex id. So I expect output like:
[
{
'vertex_id':GUID,
'edges':
[
GUID1, GUID2
]
}
]