arangosh> var examples = require("org/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(); [ [ { "_id" : "female/alice", "_key" : "alice", "_rev" : "310306423", "name" : "Alice" }, { "_id" : "relation/aliceAndBob", "_key" : "aliceAndBob", "_rev" : "311354999", "_from" : "female/alice", "_to" : "male/bob", "type" : "married" }, { "_id" : "male/bob", "_key" : "bob", "_rev" : "310634103", "name" : "Bob" } ], [ { "_id" : "female/alice", "_key" : "alice", "_rev" : "310306423", "name" : "Alice" }, { "_id" : "relation/aliceAndCharly", "_key" : "aliceAndCharly", "_rev" : "311617143", "_from" : "female/alice", "_to" : "male/charly", "type" : "friend" }, { "_id" : "male/charly", "_key" : "charly", "_rev" : "310830711", "name" : "Charly" } ] ]