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" : "_XG3zR-C--F", "label" : "9" }, { "_key" : "G", "_id" : "circles/G", "_rev" : "_XG3zR-C--B", "label" : "7" }, { "_key" : "F", "_id" : "circles/F", "_rev" : "_XG3zR-C--_", "label" : "6" }, { "_key" : "A", "_id" : "circles/A", "_rev" : "_XG3zR----_", "label" : "1" }, { "_key" : "E", "_id" : "circles/E", "_rev" : "_XG3zR----H", "label" : "5" }, { "_key" : "C", "_id" : "circles/C", "_rev" : "_XG3zR----D", "label" : "3" }, { "_key" : "D", "_id" : "circles/D", "_rev" : "_XG3zR----F", "label" : "4" }, { "_key" : "J", "_id" : "circles/J", "_rev" : "_XG3zR-C--H", "label" : "10" }, { "_key" : "B", "_id" : "circles/B", "_rev" : "_XG3zR----B", "label" : "2" }, { "_key" : "H", "_id" : "circles/H", "_rev" : "_XG3zR-C--D", "label" : "8" }, { "_key" : "K", "_id" : "circles/K", "_rev" : "_XG3zR-C--J", "label" : "11" } ] arangosh> db.edges.toArray(); [ { "_key" : "35833", "_id" : "edges/35833", "_from" : "circles/J", "_to" : "circles/K", "_rev" : "_XG3zR-G--N", "theFalse" : false, "theTruth" : true, "label" : "right_zup" }, { "_key" : "35830", "_id" : "edges/35830", "_from" : "circles/G", "_to" : "circles/J", "_rev" : "_XG3zR-G--L", "theFalse" : false, "theTruth" : true, "label" : "right_zip" }, { "_key" : "35809", "_id" : "edges/35809", "_from" : "circles/B", "_to" : "circles/C", "_rev" : "_XG3zR-C--N", "theFalse" : false, "theTruth" : true, "label" : "left_blarg" }, { "_key" : "35827", "_id" : "edges/35827", "_from" : "circles/H", "_to" : "circles/I", "_rev" : "_XG3zR-G--J", "theFalse" : false, "theTruth" : true, "label" : "right_blub" }, { "_key" : "35824", "_id" : "edges/35824", "_from" : "circles/G", "_to" : "circles/H", "_rev" : "_XG3zR-G--H", "theFalse" : false, "theTruth" : true, "label" : "right_blob" }, { "_key" : "35818", "_id" : "edges/35818", "_from" : "circles/E", "_to" : "circles/F", "_rev" : "_XG3zR-G--D", "theFalse" : false, "theTruth" : true, "label" : "left_schubi" }, { "_key" : "35812", "_id" : "edges/35812", "_from" : "circles/C", "_to" : "circles/D", "_rev" : "_XG3zR-G--_", "theFalse" : false, "theTruth" : true, "label" : "left_blorg" }, { "_key" : "35821", "_id" : "edges/35821", "_from" : "circles/A", "_to" : "circles/G", "_rev" : "_XG3zR-G--F", "theFalse" : false, "theTruth" : true, "label" : "right_foo" }, { "_key" : "35805", "_id" : "edges/35805", "_from" : "circles/A", "_to" : "circles/B", "_rev" : "_XG3zR-C--L", "theFalse" : false, "theTruth" : true, "label" : "left_bar" }, { "_key" : "35815", "_id" : "edges/35815", "_from" : "circles/B", "_to" : "circles/E", "_rev" : "_XG3zR-G--B", "theFalse" : false, "theTruth" : true, "label" : "left_blub" } ] arangosh> examples.dropGraph("traversalGraph"); true