arangosh> var examples = require("@arangodb/graph-examples/example-graph.js"); arangosh> var g = examples.loadGraph("traversalGraph"); arangosh> db.circles.toArray(); [ { "_key" : "I", "_id" : "circles/I", "_rev" : "_WK_Ou1y--_", "label" : "9" }, { "_key" : "G", "_id" : "circles/G", "_rev" : "_WK_Ou1u--L", "label" : "7" }, { "_key" : "F", "_id" : "circles/F", "_rev" : "_WK_Ou1u--J", "label" : "6" }, { "_key" : "A", "_id" : "circles/A", "_rev" : "_WK_Ou1u--_", "label" : "1" }, { "_key" : "E", "_id" : "circles/E", "_rev" : "_WK_Ou1u--H", "label" : "5" }, { "_key" : "C", "_id" : "circles/C", "_rev" : "_WK_Ou1u--D", "label" : "3" }, { "_key" : "D", "_id" : "circles/D", "_rev" : "_WK_Ou1u--F", "label" : "4" }, { "_key" : "J", "_id" : "circles/J", "_rev" : "_WK_Ou1y--B", "label" : "10" }, { "_key" : "B", "_id" : "circles/B", "_rev" : "_WK_Ou1u--B", "label" : "2" }, { "_key" : "H", "_id" : "circles/H", "_rev" : "_WK_Ou1u--N", "label" : "8" }, { "_key" : "K", "_id" : "circles/K", "_rev" : "_WK_Ou1y--D", "label" : "11" } ] arangosh> db.edges.toArray(); [ { "_key" : "39737", "_id" : "edges/39737", "_from" : "circles/B", "_to" : "circles/E", "_rev" : "_WK_Ou1y--L", "theFalse" : false, "theTruth" : true, "label" : "left_blub" }, { "_key" : "39755", "_id" : "edges/39755", "_from" : "circles/J", "_to" : "circles/K", "_rev" : "_WK_Ou12--H", "theFalse" : false, "theTruth" : true, "label" : "right_zup" }, { "_key" : "39734", "_id" : "edges/39734", "_from" : "circles/C", "_to" : "circles/D", "_rev" : "_WK_Ou1y--J", "theFalse" : false, "theTruth" : true, "label" : "left_blorg" }, { "_key" : "39740", "_id" : "edges/39740", "_from" : "circles/E", "_to" : "circles/F", "_rev" : "_WK_Ou1y--N", "theFalse" : false, "theTruth" : true, "label" : "left_schubi" }, { "_key" : "39731", "_id" : "edges/39731", "_from" : "circles/B", "_to" : "circles/C", "_rev" : "_WK_Ou1y--H", "theFalse" : false, "theTruth" : true, "label" : "left_blarg" }, { "_key" : "39749", "_id" : "edges/39749", "_from" : "circles/H", "_to" : "circles/I", "_rev" : "_WK_Ou12--D", "theFalse" : false, "theTruth" : true, "label" : "right_blub" }, { "_key" : "39746", "_id" : "edges/39746", "_from" : "circles/G", "_to" : "circles/H", "_rev" : "_WK_Ou12--B", "theFalse" : false, "theTruth" : true, "label" : "right_blob" }, { "_key" : "39743", "_id" : "edges/39743", "_from" : "circles/A", "_to" : "circles/G", "_rev" : "_WK_Ou12--_", "theFalse" : false, "theTruth" : true, "label" : "right_foo" }, { "_key" : "39727", "_id" : "edges/39727", "_from" : "circles/A", "_to" : "circles/B", "_rev" : "_WK_Ou1y--F", "theFalse" : false, "theTruth" : true, "label" : "left_bar" }, { "_key" : "39752", "_id" : "edges/39752", "_from" : "circles/G", "_to" : "circles/J", "_rev" : "_WK_Ou12--F", "theFalse" : false, "theTruth" : true, "label" : "right_zip" } ] arangosh> examples.dropGraph("traversalGraph"); true