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" : "_WgE8igi--_", "name" : "Alice" }, { "_key" : "bob", "_id" : "persons/bob", "_rev" : "_WgE8igm--_", "name" : "Bob" }, { "_key" : "charlie", "_id" : "persons/charlie", "_rev" : "_WgE8igm--B", "name" : "Charlie" }, { "_key" : "dave", "_id" : "persons/dave", "_rev" : "_WgE8igq--_", "name" : "Dave" } ], "paths" : [ { "edges" : [ ], "vertices" : [ { "_key" : "alice", "_id" : "persons/alice", "_rev" : "_WgE8igi--_", "name" : "Alice" } ] }, { "edges" : [ { "_key" : "14702", "_id" : "knows/14702", "_from" : "persons/alice", "_to" : "persons/bob", "_rev" : "_WgE8igu--B", "vertex" : "alice" } ], "vertices" : [ { "_key" : "alice", "_id" : "persons/alice", "_rev" : "_WgE8igi--_", "name" : "Alice" }, { "_key" : "bob", "_id" : "persons/bob", "_rev" : "_WgE8igm--_", "name" : "Bob" } ] }, { "edges" : [ { "_key" : "14702", "_id" : "knows/14702", "_from" : "persons/alice", "_to" : "persons/bob", "_rev" : "_WgE8igu--B", "vertex" : "alice" }, { "_key" : "14706", "_id" : "knows/14706", "_from" : "persons/bob", "_to" : "persons/charlie", "_rev" : "_WgE8igy--_", "vertex" : "bob" } ], "vertices" : [ { "_key" : "alice", "_id" : "persons/alice", "_rev" : "_WgE8igi--_", "name" : "Alice" }, { "_key" : "bob", "_id" : "persons/bob", "_rev" : "_WgE8igm--_", "name" : "Bob" }, { "_key" : "charlie", "_id" : "persons/charlie", "_rev" : "_WgE8igm--B", "name" : "Charlie" } ] }, { "edges" : [ { "_key" : "14702", "_id" : "knows/14702", "_from" : "persons/alice", "_to" : "persons/bob", "_rev" : "_WgE8igu--B", "vertex" : "alice" }, { "_key" : "14709", "_id" : "knows/14709", "_from" : "persons/bob", "_to" : "persons/dave", "_rev" : "_WgE8ig2--_", "vertex" : "bob" } ], "vertices" : [ { "_key" : "alice", "_id" : "persons/alice", "_rev" : "_WgE8igi--_", "name" : "Alice" }, { "_key" : "bob", "_id" : "persons/bob", "_rev" : "_WgE8igm--_", "name" : "Bob" }, { "_key" : "dave", "_id" : "persons/dave", "_rev" : "_WgE8igq--_", "name" : "Dave" } ] } ] } }, "error" : false, "code" : 200 }