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