arangosh> var examples = require("@arangodb/graph-examples/example-graph.js"); arangosh> var graph = examples.loadGraph("social"); arangosh> var query = graph._vertices({name: "Alice"}); arangosh> query.outEdges().toVertices().path().toArray(); [ [ { "_key" : "alice", "_id" : "female/alice", "_rev" : "20540", "name" : "Alice" }, { "_key" : "aliceAndBob", "_id" : "relation/aliceAndBob", "_from" : "female/alice", "_to" : "male/bob", "_rev" : "20555", "type" : "married" }, { "_key" : "bob", "_id" : "male/bob", "_rev" : "20544", "name" : "Bob" } ], [ { "_key" : "alice", "_id" : "female/alice", "_rev" : "20540", "name" : "Alice" }, { "_key" : "aliceAndCharly", "_id" : "relation/aliceAndCharly", "_from" : "female/alice", "_to" : "male/charly", "_rev" : "20559", "type" : "friend" }, { "_key" : "charly", "_id" : "male/charly", "_rev" : "20548", "name" : "Charly" } ] ]