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" : "_XG3yysm--J",
"label" : "9"
},
{
"_key" : "G",
"_id" : "circles/G",
"_rev" : "_XG3yysm--F",
"label" : "7"
},
{
"_key" : "F",
"_id" : "circles/F",
"_rev" : "_XG3yysm--D",
"label" : "6"
},
{
"_key" : "A",
"_id" : "circles/A",
"_rev" : "_XG3yysi--B",
"label" : "1"
},
{
"_key" : "E",
"_id" : "circles/E",
"_rev" : "_XG3yysm--B",
"label" : "5"
},
{
"_key" : "C",
"_id" : "circles/C",
"_rev" : "_XG3yysi--F",
"label" : "3"
},
{
"_key" : "D",
"_id" : "circles/D",
"_rev" : "_XG3yysm--_",
"label" : "4"
},
{
"_key" : "J",
"_id" : "circles/J",
"_rev" : "_XG3yysm--L",
"label" : "10"
},
{
"_key" : "B",
"_id" : "circles/B",
"_rev" : "_XG3yysi--D",
"label" : "2"
},
{
"_key" : "H",
"_id" : "circles/H",
"_rev" : "_XG3yysm--H",
"label" : "8"
},
{
"_key" : "K",
"_id" : "circles/K",
"_rev" : "_XG3yysm--N",
"label" : "11"
}
]
arangosh> db.edges.toArray();
[
{
"_key" : "7670",
"_id" : "edges/7670",
"_from" : "circles/H",
"_to" : "circles/I",
"_rev" : "_XG3yysq--L",
"theFalse" : false,
"theTruth" : true,
"label" : "right_blub"
},
{
"_key" : "7658",
"_id" : "edges/7658",
"_from" : "circles/B",
"_to" : "circles/E",
"_rev" : "_XG3yysq--D",
"theFalse" : false,
"theTruth" : true,
"label" : "left_blub"
},
{
"_key" : "7673",
"_id" : "edges/7673",
"_from" : "circles/G",
"_to" : "circles/J",
"_rev" : "_XG3yysq--N",
"theFalse" : false,
"theTruth" : true,
"label" : "right_zip"
},
{
"_key" : "7667",
"_id" : "edges/7667",
"_from" : "circles/G",
"_to" : "circles/H",
"_rev" : "_XG3yysq--J",
"theFalse" : false,
"theTruth" : true,
"label" : "right_blob"
},
{
"_key" : "7676",
"_id" : "edges/7676",
"_from" : "circles/J",
"_to" : "circles/K",
"_rev" : "_XG3yysq--P",
"theFalse" : false,
"theTruth" : true,
"label" : "right_zup"
},
{
"_key" : "7652",
"_id" : "edges/7652",
"_from" : "circles/B",
"_to" : "circles/C",
"_rev" : "_XG3yysq--_",
"theFalse" : false,
"theTruth" : true,
"label" : "left_blarg"
},
{
"_key" : "7661",
"_id" : "edges/7661",
"_from" : "circles/E",
"_to" : "circles/F",
"_rev" : "_XG3yysq--F",
"theFalse" : false,
"theTruth" : true,
"label" : "left_schubi"
},
{
"_key" : "7648",
"_id" : "edges/7648",
"_from" : "circles/A",
"_to" : "circles/B",
"_rev" : "_XG3yysm--P",
"theFalse" : false,
"theTruth" : true,
"label" : "left_bar"
},
{
"_key" : "7655",
"_id" : "edges/7655",
"_from" : "circles/C",
"_to" : "circles/D",
"_rev" : "_XG3yysq--B",
"theFalse" : false,
"theTruth" : true,
"label" : "left_blorg"
},
{
"_key" : "7664",
"_id" : "edges/7664",
"_from" : "circles/A",
"_to" : "circles/G",
"_rev" : "_XG3yysq--H",
"theFalse" : false,
"theTruth" : true,
"label" : "right_foo"
}
]