arangosh> var examples = require("@arangodb/graph-examples/example-graph.js"); arangosh> var graph = examples.loadGraph("social"); arangosh> var query = graph._vertices([{name: "Alice"}, {name: "Bob"}]); arangosh> query.outEdges().toArray(); [ { "_from" : "female/alice", "_id" : "relation/aliceAndBob", "_key" : "aliceAndBob", "_rev" : "646794824", "_to" : "male/bob", "type" : "married" }, { "_from" : "female/alice", "_id" : "relation/aliceAndCharly", "_key" : "aliceAndCharly", "_rev" : "647056968", "_to" : "male/charly", "type" : "friend" }, { "_from" : "male/bob", "_id" : "relation/bobAndDiana", "_key" : "bobAndDiana", "_rev" : "647450184", "_to" : "female/diana", "type" : "friend" } ]