shell> curl -X POST --data-binary @- --dump - http://localhost:8529/_api/traversal <<EOF { "startVertex" : "persons/alice", "graphName" : "knows_graph", "direction" : "outbound" } 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" : "_VReq22G---", "name" : "Alice" }, { "_key" : "bob", "_id" : "persons/bob", "_rev" : "_VReq22G--_", "name" : "Bob" }, { "_key" : "charlie", "_id" : "persons/charlie", "_rev" : "_VReq22G--A", "name" : "Charlie" }, { "_key" : "dave", "_id" : "persons/dave", "_rev" : "_VReq22K---", "name" : "Dave" } ], "paths" : [ { "edges" : [ ], "vertices" : [ { "_key" : "alice", "_id" : "persons/alice", "_rev" : "_VReq22G---", "name" : "Alice" } ] }, { "edges" : [ { "_key" : "12039", "_id" : "knows/12039", "_from" : "persons/alice", "_to" : "persons/bob", "_rev" : "_VReq22K--A" } ], "vertices" : [ { "_key" : "alice", "_id" : "persons/alice", "_rev" : "_VReq22G---", "name" : "Alice" }, { "_key" : "bob", "_id" : "persons/bob", "_rev" : "_VReq22G--_", "name" : "Bob" } ] }, { "edges" : [ { "_key" : "12039", "_id" : "knows/12039", "_from" : "persons/alice", "_to" : "persons/bob", "_rev" : "_VReq22K--A" }, { "_key" : "12043", "_id" : "knows/12043", "_from" : "persons/bob", "_to" : "persons/charlie", "_rev" : "_VReq22K--B" } ], "vertices" : [ { "_key" : "alice", "_id" : "persons/alice", "_rev" : "_VReq22G---", "name" : "Alice" }, { "_key" : "bob", "_id" : "persons/bob", "_rev" : "_VReq22G--_", "name" : "Bob" }, { "_key" : "charlie", "_id" : "persons/charlie", "_rev" : "_VReq22G--A", "name" : "Charlie" } ] }, { "edges" : [ { "_key" : "12039", "_id" : "knows/12039", "_from" : "persons/alice", "_to" : "persons/bob", "_rev" : "_VReq22K--A" }, { "_key" : "12046", "_id" : "knows/12046", "_from" : "persons/bob", "_to" : "persons/dave", "_rev" : "_VReq22O---" } ], "vertices" : [ { "_key" : "alice", "_id" : "persons/alice", "_rev" : "_VReq22G---", "name" : "Alice" }, { "_key" : "bob", "_id" : "persons/bob", "_rev" : "_VReq22G--_", "name" : "Bob" }, { "_key" : "dave", "_id" : "persons/dave", "_rev" : "_VReq22K---", "name" : "Dave" } ] } ] } }, "error" : false, "code" : 200 }