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" : "_U-_pRpO--A",
"label" : "9"
},
{
"_key" : "G",
"_id" : "circles/G",
"_rev" : "_U-_pRpO---",
"label" : "7"
},
{
"_key" : "F",
"_id" : "circles/F",
"_rev" : "_U-_pRpK--B",
"label" : "6"
},
{
"_key" : "A",
"_id" : "circles/A",
"_rev" : "_U-_pRpG---",
"label" : "1"
},
{
"_key" : "E",
"_id" : "circles/E",
"_rev" : "_U-_pRpK--A",
"label" : "5"
},
{
"_key" : "C",
"_id" : "circles/C",
"_rev" : "_U-_pRpK---",
"label" : "3"
},
{
"_key" : "D",
"_id" : "circles/D",
"_rev" : "_U-_pRpK--_",
"label" : "4"
},
{
"_key" : "J",
"_id" : "circles/J",
"_rev" : "_U-_pRpO--B",
"label" : "10"
},
{
"_key" : "B",
"_id" : "circles/B",
"_rev" : "_U-_pRpG--_",
"label" : "2"
},
{
"_key" : "H",
"_id" : "circles/H",
"_rev" : "_U-_pRpO--_",
"label" : "8"
},
{
"_key" : "K",
"_id" : "circles/K",
"_rev" : "_U-_pRpO--C",
"label" : "11"
}
]
arangosh> db.edges.toArray();
[
{
"_key" : "7469",
"_id" : "edges/7469",
"_from" : "circles/B",
"_to" : "circles/C",
"_rev" : "_U-_pRpS--_",
"label" : "left_blarg",
"theFalse" : false,
"theTruth" : true
},
{
"_key" : "7478",
"_id" : "edges/7478",
"_from" : "circles/E",
"_to" : "circles/F",
"_rev" : "_U-_pRpW---",
"label" : "left_schubi",
"theFalse" : false,
"theTruth" : true
},
{
"_key" : "7472",
"_id" : "edges/7472",
"_from" : "circles/C",
"_to" : "circles/D",
"_rev" : "_U-_pRpS--A",
"label" : "left_blorg",
"theFalse" : false,
"theTruth" : true
},
{
"_key" : "7487",
"_id" : "edges/7487",
"_from" : "circles/H",
"_to" : "circles/I",
"_rev" : "_U-_pRpW--B",
"label" : "right_blub",
"theFalse" : false,
"theTruth" : true
},
{
"_key" : "7493",
"_id" : "edges/7493",
"_from" : "circles/J",
"_to" : "circles/K",
"_rev" : "_U-_pRpa--_",
"label" : "right_zup",
"theFalse" : false,
"theTruth" : true
},
{
"_key" : "7490",
"_id" : "edges/7490",
"_from" : "circles/G",
"_to" : "circles/J",
"_rev" : "_U-_pRpa---",
"label" : "right_zip",
"theFalse" : false,
"theTruth" : true
},
{
"_key" : "7465",
"_id" : "edges/7465",
"_from" : "circles/A",
"_to" : "circles/B",
"_rev" : "_U-_pRpS---",
"label" : "left_bar",
"theFalse" : false,
"theTruth" : true
},
{
"_key" : "7481",
"_id" : "edges/7481",
"_from" : "circles/A",
"_to" : "circles/G",
"_rev" : "_U-_pRpW--_",
"label" : "right_foo",
"theFalse" : false,
"theTruth" : true
},
{
"_key" : "7475",
"_id" : "edges/7475",
"_from" : "circles/B",
"_to" : "circles/E",
"_rev" : "_U-_pRpS--B",
"label" : "left_blub",
"theFalse" : false,
"theTruth" : true
},
{
"_key" : "7484",
"_id" : "edges/7484",
"_from" : "circles/G",
"_to" : "circles/H",
"_rev" : "_U-_pRpW--A",
"label" : "right_blob",
"theFalse" : false,
"theTruth" : true
}
]