Hey Allen,

maybe you can just return the traversal path? Example query:

FOR v, e, p IN 2..2 OUTBOUND "yourColl/startVertex" edgeCollection
  RETURN p

[
  {
    "vertices": [
      {"_id": "yourColl/startVertex", "x": 100, "y": 100},
      {"_id": "yourColl/anotherVertex", "x": 200, "y": 300},
      {"_id": "anotherColl/otherVertex", "x": 500, "y": 400}
    ],
    "edges": [
      {"_from": "yourColl/startVertex", "_to": "yourColl/anotherVertex", 
...},
      {"_from": "yourColl/anotherVertex", "_to": "anotherColl/otherVertex", 
...}
    ]
  }
]

-- 
You received this message because you are subscribed to the Google Groups 
"ArangoDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to arangodb+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to