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