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" : "_VOyw1eO---",
"label" : "9"
},
{
"_key" : "G",
"_id" : "circles/G",
"_rev" : "_VOyw1eK--_",
"label" : "7"
},
{
"_key" : "F",
"_id" : "circles/F",
"_rev" : "_VOyw1eK---",
"label" : "6"
},
{
"_key" : "A",
"_id" : "circles/A",
"_rev" : "_VOyw1eC---",
"label" : "1"
},
{
"_key" : "E",
"_id" : "circles/E",
"_rev" : "_VOyw1eG--A",
"label" : "5"
},
{
"_key" : "C",
"_id" : "circles/C",
"_rev" : "_VOyw1eG---",
"label" : "3"
},
{
"_key" : "D",
"_id" : "circles/D",
"_rev" : "_VOyw1eG--_",
"label" : "4"
},
{
"_key" : "J",
"_id" : "circles/J",
"_rev" : "_VOyw1eO--_",
"label" : "10"
},
{
"_key" : "B",
"_id" : "circles/B",
"_rev" : "_VOyw1eC--_",
"label" : "2"
},
{
"_key" : "H",
"_id" : "circles/H",
"_rev" : "_VOyw1eK--A",
"label" : "8"
},
{
"_key" : "K",
"_id" : "circles/K",
"_rev" : "_VOyw1eO--A",
"label" : "11"
}
]
arangosh> db.edges.toArray();
[
{
"_key" : "7575",
"_id" : "edges/7575",
"_from" : "circles/A",
"_to" : "circles/G",
"_rev" : "_VOyw1eW--A",
"theFalse" : false,
"theTruth" : true,
"label" : "right_foo"
},
{
"_key" : "7581",
"_id" : "edges/7581",
"_from" : "circles/H",
"_to" : "circles/I",
"_rev" : "_VOyw1ea--_",
"theFalse" : false,
"theTruth" : true,
"label" : "right_blub"
},
{
"_key" : "7569",
"_id" : "edges/7569",
"_from" : "circles/B",
"_to" : "circles/E",
"_rev" : "_VOyw1eW---",
"theFalse" : false,
"theTruth" : true,
"label" : "left_blub"
},
{
"_key" : "7584",
"_id" : "edges/7584",
"_from" : "circles/G",
"_to" : "circles/J",
"_rev" : "_VOyw1ea--A",
"theFalse" : false,
"theTruth" : true,
"label" : "right_zip"
},
{
"_key" : "7566",
"_id" : "edges/7566",
"_from" : "circles/C",
"_to" : "circles/D",
"_rev" : "_VOyw1eS--A",
"theFalse" : false,
"theTruth" : true,
"label" : "left_blorg"
},
{
"_key" : "7563",
"_id" : "edges/7563",
"_from" : "circles/B",
"_to" : "circles/C",
"_rev" : "_VOyw1eS--_",
"theFalse" : false,
"theTruth" : true,
"label" : "left_blarg"
},
{
"_key" : "7572",
"_id" : "edges/7572",
"_from" : "circles/E",
"_to" : "circles/F",
"_rev" : "_VOyw1eW--_",
"theFalse" : false,
"theTruth" : true,
"label" : "left_schubi"
},
{
"_key" : "7559",
"_id" : "edges/7559",
"_from" : "circles/A",
"_to" : "circles/B",
"_rev" : "_VOyw1eS---",
"theFalse" : false,
"theTruth" : true,
"label" : "left_bar"
},
{
"_key" : "7578",
"_id" : "edges/7578",
"_from" : "circles/G",
"_to" : "circles/H",
"_rev" : "_VOyw1ea---",
"theFalse" : false,
"theTruth" : true,
"label" : "right_blob"
},
{
"_key" : "7587",
"_id" : "edges/7587",
"_from" : "circles/J",
"_to" : "circles/K",
"_rev" : "_VOyw1ee---",
"theFalse" : false,
"theTruth" : true,
"label" : "right_zup"
}
]