arangosh> var examples = require("@arangodb/graph-examples/example-graph.js"); arangosh> var graph = examples.loadGraph("traversalGraph"); arangosh> db.circles.toArray(); [ { "_key" : "A", "_id" : "circles/A", "_rev" : "_ZG8LcV----", "label" : "1" }, { "_key" : "B", "_id" : "circles/B", "_rev" : "_ZG8LcVC---", "label" : "2" }, { "_key" : "C", "_id" : "circles/C", "_rev" : "_ZG8LcVC--A", "label" : "3" }, { "_key" : "D", "_id" : "circles/D", "_rev" : "_ZG8LcVC--C", "label" : "4" }, { "_key" : "E", "_id" : "circles/E", "_rev" : "_ZG8LcVG---", "label" : "5" }, { "_key" : "F", "_id" : "circles/F", "_rev" : "_ZG8LcVG--A", "label" : "6" }, { "_key" : "G", "_id" : "circles/G", "_rev" : "_ZG8LcVG--C", "label" : "7" }, { "_key" : "H", "_id" : "circles/H", "_rev" : "_ZG8LcVK---", "label" : "8" }, { "_key" : "I", "_id" : "circles/I", "_rev" : "_ZG8LcVK--A", "label" : "9" }, { "_key" : "J", "_id" : "circles/J", "_rev" : "_ZG8LcVK--C", "label" : "10" }, { "_key" : "K", "_id" : "circles/K", "_rev" : "_ZG8LcVO---", "label" : "11" } ] arangosh> db.edges.toArray(); [ { "_key" : "65615", "_id" : "edges/65615", "_from" : "circles/A", "_to" : "circles/B", "_rev" : "_ZG8LcVO--A", "theFalse" : false, "theTruth" : true, "label" : "left_bar" }, { "_key" : "65617", "_id" : "edges/65617", "_from" : "circles/B", "_to" : "circles/C", "_rev" : "_ZG8LcVS---", "theFalse" : false, "theTruth" : true, "label" : "left_blarg" }, { "_key" : "65619", "_id" : "edges/65619", "_from" : "circles/C", "_to" : "circles/D", "_rev" : "_ZG8LcVS--A", "theFalse" : false, "theTruth" : true, "label" : "left_blorg" }, { "_key" : "65621", "_id" : "edges/65621", "_from" : "circles/B", "_to" : "circles/E", "_rev" : "_ZG8LcVW---", "theFalse" : false, "theTruth" : true, "label" : "left_blub" }, { "_key" : "65623", "_id" : "edges/65623", "_from" : "circles/E", "_to" : "circles/F", "_rev" : "_ZG8LcVW--A", "theFalse" : false, "theTruth" : true, "label" : "left_schubi" }, { "_key" : "65625", "_id" : "edges/65625", "_from" : "circles/A", "_to" : "circles/G", "_rev" : "_ZG8LcVW--C", "theFalse" : false, "theTruth" : true, "label" : "right_foo" }, { "_key" : "65627", "_id" : "edges/65627", "_from" : "circles/G", "_to" : "circles/H", "_rev" : "_ZG8LcVa---", "theFalse" : false, "theTruth" : true, "label" : "right_blob" }, { "_key" : "65629", "_id" : "edges/65629", "_from" : "circles/H", "_to" : "circles/I", "_rev" : "_ZG8LcVa--A", "theFalse" : false, "theTruth" : true, "label" : "right_blub" }, { "_key" : "65631", "_id" : "edges/65631", "_from" : "circles/G", "_to" : "circles/J", "_rev" : "_ZG8LcVe---", "theFalse" : false, "theTruth" : true, "label" : "right_zip" }, { "_key" : "65633", "_id" : "edges/65633", "_from" : "circles/J", "_to" : "circles/K", "_rev" : "_ZG8LcVe--A", "theFalse" : false, "theTruth" : true, "label" : "right_zup" } ]