arangosh> db._create("vertex");
[ArangoCollection 507369927, "vertex" (type document, status loaded)]
arangosh> db._createEdgeCollection("relation");
[ArangoCollection 507500999, "relation" (type edge, status loaded)]
arangosh> myGraph.v1 = db.vertex.insert({ name : "vertex 1" });
{
"_id" : "vertex/507828679",
"_rev" : "507828679",
"_key" : "507828679"
}
arangosh> myGraph.v2 = db.vertex.insert({ name : "vertex 2" });
{
"_id" : "vertex/508025287",
"_rev" : "508025287",
"_key" : "508025287"
}
arangosh> myGraph.e1 = db.relation.insert(myGraph.v1, myGraph.v2, { label : "knows" });
{
"_id" : "relation/508352967",
"_rev" : "508352967",
"_key" : "508352967"
}
arangosh> db._document(myGraph.e1);
{
"label" : "knows",
"_id" : "relation/508352967",
"_rev" : "508352967",
"_key" : "508352967",
"_from" : "vertex/507828679",
"_to" : "vertex/508025287"
}
arangosh> db.relation.outEdges(myGraph.v1._id);
[
{
"_id" : "relation/508352967",
"_key" : "508352967",
"_rev" : "508352967",
"_from" : "vertex/507828679",
"_to" : "vertex/508025287",
"label" : "knows"
}
]
arangosh> db.relation.outEdges(myGraph.v2._id);
[ ]