arangosh> var examples = require("@arangodb/graph-examples/example-graph.js");
arangosh> var graph = examples.loadGraph("traversalGraph");
arangosh> db.circles.toArray();
[
{
"_key" : "I",
"_id" : "circles/I",
"_rev" : "_YOn1FhK--L",
"label" : "9"
},
{
"_key" : "G",
"_id" : "circles/G",
"_rev" : "_YOn1FhK--H",
"label" : "7"
},
{
"_key" : "F",
"_id" : "circles/F",
"_rev" : "_YOn1FhK--F",
"label" : "6"
},
{
"_key" : "A",
"_id" : "circles/A",
"_rev" : "_YOn1FhG--_",
"label" : "1"
},
{
"_key" : "E",
"_id" : "circles/E",
"_rev" : "_YOn1FhK--D",
"label" : "5"
},
{
"_key" : "C",
"_id" : "circles/C",
"_rev" : "_YOn1FhK--_",
"label" : "3"
},
{
"_key" : "D",
"_id" : "circles/D",
"_rev" : "_YOn1FhK--B",
"label" : "4"
},
{
"_key" : "J",
"_id" : "circles/J",
"_rev" : "_YOn1FhO--_",
"label" : "10"
},
{
"_key" : "B",
"_id" : "circles/B",
"_rev" : "_YOn1FhG--B",
"label" : "2"
},
{
"_key" : "H",
"_id" : "circles/H",
"_rev" : "_YOn1FhK--J",
"label" : "8"
},
{
"_key" : "K",
"_id" : "circles/K",
"_rev" : "_YOn1FhO--B",
"label" : "11"
}
]
arangosh> db.edges.toArray();
[
{
"_key" : "98474",
"_id" : "edges/98474",
"_from" : "circles/A",
"_to" : "circles/G",
"_rev" : "_YOn1FhS--A",
"theFalse" : false,
"theTruth" : true,
"label" : "right_foo"
},
{
"_key" : "98483",
"_id" : "edges/98483",
"_from" : "circles/G",
"_to" : "circles/J",
"_rev" : "_YOn1FhS--G",
"theFalse" : false,
"theTruth" : true,
"label" : "right_zip"
},
{
"_key" : "98458",
"_id" : "edges/98458",
"_from" : "circles/A",
"_to" : "circles/B",
"_rev" : "_YOn1FhO--D",
"theFalse" : false,
"theTruth" : true,
"label" : "left_bar"
},
{
"_key" : "98468",
"_id" : "edges/98468",
"_from" : "circles/B",
"_to" : "circles/E",
"_rev" : "_YOn1FhO--J",
"theFalse" : false,
"theTruth" : true,
"label" : "left_blub"
},
{
"_key" : "98477",
"_id" : "edges/98477",
"_from" : "circles/G",
"_to" : "circles/H",
"_rev" : "_YOn1FhS--C",
"theFalse" : false,
"theTruth" : true,
"label" : "right_blob"
},
{
"_key" : "98486",
"_id" : "edges/98486",
"_from" : "circles/J",
"_to" : "circles/K",
"_rev" : "_YOn1FhS--I",
"theFalse" : false,
"theTruth" : true,
"label" : "right_zup"
},
{
"_key" : "98471",
"_id" : "edges/98471",
"_from" : "circles/E",
"_to" : "circles/F",
"_rev" : "_YOn1FhS---",
"theFalse" : false,
"theTruth" : true,
"label" : "left_schubi"
},
{
"_key" : "98462",
"_id" : "edges/98462",
"_from" : "circles/B",
"_to" : "circles/C",
"_rev" : "_YOn1FhO--F",
"theFalse" : false,
"theTruth" : true,
"label" : "left_blarg"
},
{
"_key" : "98465",
"_id" : "edges/98465",
"_from" : "circles/C",
"_to" : "circles/D",
"_rev" : "_YOn1FhO--H",
"theFalse" : false,
"theTruth" : true,
"label" : "left_blorg"
},
{
"_key" : "98480",
"_id" : "edges/98480",
"_from" : "circles/H",
"_to" : "circles/I",
"_rev" : "_YOn1FhS--E",
"theFalse" : false,
"theTruth" : true,
"label" : "right_blub"
}
]