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" : "_WcJRSXC--B",
"label" : "9"
},
{
"_key" : "G",
"_id" : "circles/G",
"_rev" : "_WcJRSX---L",
"label" : "7"
},
{
"_key" : "F",
"_id" : "circles/F",
"_rev" : "_WcJRSX---J",
"label" : "6"
},
{
"_key" : "A",
"_id" : "circles/A",
"_rev" : "_WcJRSX---_",
"label" : "1"
},
{
"_key" : "E",
"_id" : "circles/E",
"_rev" : "_WcJRSX---H",
"label" : "5"
},
{
"_key" : "C",
"_id" : "circles/C",
"_rev" : "_WcJRSX---D",
"label" : "3"
},
{
"_key" : "D",
"_id" : "circles/D",
"_rev" : "_WcJRSX---F",
"label" : "4"
},
{
"_key" : "J",
"_id" : "circles/J",
"_rev" : "_WcJRSXC--D",
"label" : "10"
},
{
"_key" : "B",
"_id" : "circles/B",
"_rev" : "_WcJRSX---B",
"label" : "2"
},
{
"_key" : "H",
"_id" : "circles/H",
"_rev" : "_WcJRSXC--_",
"label" : "8"
},
{
"_key" : "K",
"_id" : "circles/K",
"_rev" : "_WcJRSXC--F",
"label" : "11"
}
]
arangosh> db.edges.toArray();
[
{
"_key" : "7647",
"_id" : "edges/7647",
"_from" : "circles/G",
"_to" : "circles/H",
"_rev" : "_WcJRSXG--B",
"theFalse" : false,
"theTruth" : true,
"label" : "right_blob"
},
{
"_key" : "7641",
"_id" : "edges/7641",
"_from" : "circles/E",
"_to" : "circles/F",
"_rev" : "_WcJRSXC--P",
"theFalse" : false,
"theTruth" : true,
"label" : "left_schubi"
},
{
"_key" : "7644",
"_id" : "edges/7644",
"_from" : "circles/A",
"_to" : "circles/G",
"_rev" : "_WcJRSXG--_",
"theFalse" : false,
"theTruth" : true,
"label" : "right_foo"
},
{
"_key" : "7653",
"_id" : "edges/7653",
"_from" : "circles/G",
"_to" : "circles/J",
"_rev" : "_WcJRSXG--F",
"theFalse" : false,
"theTruth" : true,
"label" : "right_zip"
},
{
"_key" : "7628",
"_id" : "edges/7628",
"_from" : "circles/A",
"_to" : "circles/B",
"_rev" : "_WcJRSXC--H",
"theFalse" : false,
"theTruth" : true,
"label" : "left_bar"
},
{
"_key" : "7632",
"_id" : "edges/7632",
"_from" : "circles/B",
"_to" : "circles/C",
"_rev" : "_WcJRSXC--J",
"theFalse" : false,
"theTruth" : true,
"label" : "left_blarg"
},
{
"_key" : "7650",
"_id" : "edges/7650",
"_from" : "circles/H",
"_to" : "circles/I",
"_rev" : "_WcJRSXG--D",
"theFalse" : false,
"theTruth" : true,
"label" : "right_blub"
},
{
"_key" : "7656",
"_id" : "edges/7656",
"_from" : "circles/J",
"_to" : "circles/K",
"_rev" : "_WcJRSXG--H",
"theFalse" : false,
"theTruth" : true,
"label" : "right_zup"
},
{
"_key" : "7635",
"_id" : "edges/7635",
"_from" : "circles/C",
"_to" : "circles/D",
"_rev" : "_WcJRSXC--L",
"theFalse" : false,
"theTruth" : true,
"label" : "left_blorg"
},
{
"_key" : "7638",
"_id" : "edges/7638",
"_from" : "circles/B",
"_to" : "circles/E",
"_rev" : "_WcJRSXC--N",
"theFalse" : false,
"theTruth" : true,
"label" : "left_blub"
}
]