shell> curl -X POST --data-binary @- --dump - http://localhost:8529/_api/traversal <<EOF { "startVertex" : "persons/alice", "graphName" : "knows_graph", "direction" : "inbound" } EOF HTTP/1.1 200 OK content-type: application/json; charset=utf-8 x-content-type-options: nosniff { "result" : { "visited" : { "vertices" : [ { "_key" : "alice", "_id" : "persons/alice", "_rev" : "_WnWW7im--_", "name" : "Alice" }, { "_key" : "eve", "_id" : "persons/eve", "_rev" : "_WnWW7im--H", "name" : "Eve" } ], "paths" : [ { "edges" : [ ], "vertices" : [ { "_key" : "alice", "_id" : "persons/alice", "_rev" : "_WnWW7im--_", "name" : "Alice" } ] }, { "edges" : [ { "_key" : "14271", "_id" : "knows/14271", "_from" : "persons/eve", "_to" : "persons/alice", "_rev" : "_WnWW7iq--F", "vertex" : "eve" } ], "vertices" : [ { "_key" : "alice", "_id" : "persons/alice", "_rev" : "_WnWW7im--_", "name" : "Alice" }, { "_key" : "eve", "_id" : "persons/eve", "_rev" : "_WnWW7im--H", "name" : "Eve" } ] } ] } }, "error" : false, "code" : 200 }