arangosh> var examples = require("@arangodb/graph-examples/example-graph.js"); arangosh> var graph = examples.loadGraph("social"); arangosh> graph._edges({type: "married"}).toArray(); [ { "_key" : "aliceAndBob", "_id" : "relation/aliceAndBob", "_from" : "female/alice", "_to" : "male/bob", "_rev" : "19141", "type" : "married" }, { "_key" : "charlyAndDiana", "_id" : "relation/charlyAndDiana", "_from" : "male/charly", "_to" : "female/diana", "_rev" : "19148", "type" : "married" } ]