arangosh> db._create("vertex"); [ArangoCollection 501260844, "vertex" (type document, status loaded)] arangosh> db._createEdgeCollection("relation"); [ArangoCollection 501391916, "relation" (type edge, status loaded)] arangosh> myGraph.v1 = db.vertex.insert({ name : "vertex 1" }); { "_id" : "vertex/501719596", "_rev" : "501719596", "_key" : "501719596" } arangosh> myGraph.v2 = db.vertex.insert({ name : "vertex 2" }); { "_id" : "vertex/501916204", "_rev" : "501916204", "_key" : "501916204" } arangosh> myGraph.e1 = db.relation.insert(myGraph.v1, myGraph.v2, { label : "knows" }); { "_id" : "relation/502243884", "_rev" : "502243884", "_key" : "502243884" } arangosh> db._document(myGraph.e1); { "label" : "knows", "_id" : "relation/502243884", "_rev" : "502243884", "_key" : "502243884", "_from" : "vertex/501719596", "_to" : "vertex/501916204" } arangosh> db.relation.edges(myGraph.e1._id); [ ]