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