Example graphs
ArangoDB comes with a set of easy-to-understand graphs for demonstration purposes.
In the web interface, navigate to the GRAPHS section, click the Add Graph card, go to the Examples tab, and click the Create button of one of the listed graphs.
In arangosh, run
require("@arangodb/graph-examples/example-graph").loadGraph("<name>");
with<name>
substituted by the name of an example graph listed below.
You can visually explore the created graphs in the Graph viewer of the web interface.
You can take a look at the script that creates the example graphs on GitHub for reference about how to manage graphs programmatically.
Knows Graph
The knows
graph is a set of persons knowing each other:
The graph consists of a persons
vertex collection connected via a knows
edge collection.
There are five persons, Alice, Bob, Charlie, Dave, and Eve.
They have the following directed relations:
- Alice knows Bob
- Bob knows Charlie
- Bob knows Dave
- Eve knows Alice
- Eve knows Bob
Example of how to create the graph, inspect its vertices and edges, and delete it again:
var examples = require("@arangodb/graph-examples/example-graph");
var g = examples.loadGraph("knows_graph");
db.persons.toArray()
db.knows.toArray();
examples.dropGraph("knows_graph");
[
{
"_key" : "alice",
"_id" : "persons/alice",
"_rev" : "_go2WYdi---",
"name" : "Alice"
},
{
"_key" : "bob",
"_id" : "persons/bob",
"_rev" : "_go2WYdm---",
"name" : "Bob"
},
{
"_key" : "charlie",
"_id" : "persons/charlie",
"_rev" : "_go2WYdm--_",
"name" : "Charlie"
},
{
"_key" : "dave",
"_id" : "persons/dave",
"_rev" : "_go2WYdm--A",
"name" : "Dave"
},
{
"_key" : "eve",
"_id" : "persons/eve",
"_rev" : "_go2WYdm--B",
"name" : "Eve"
}
]
[
{
"_key" : "72290",
"_id" : "knows/72290",
"_from" : "persons/alice",
"_to" : "persons/bob",
"_rev" : "_go2WYdm--C",
"vertex" : "alice"
},
{
"_key" : "72292",
"_id" : "knows/72292",
"_from" : "persons/bob",
"_to" : "persons/charlie",
"_rev" : "_go2WYdq---",
"vertex" : "bob"
},
{
"_key" : "72294",
"_id" : "knows/72294",
"_from" : "persons/bob",
"_to" : "persons/dave",
"_rev" : "_go2WYdq--_",
"vertex" : "bob"
},
{
"_key" : "72296",
"_id" : "knows/72296",
"_from" : "persons/eve",
"_to" : "persons/alice",
"_rev" : "_go2WYdq--A",
"vertex" : "eve"
},
{
"_key" : "72298",
"_id" : "knows/72298",
"_from" : "persons/eve",
"_to" : "persons/bob",
"_rev" : "_go2WYdq--B",
"vertex" : "eve"
}
]
Note: With the default traversal depth of 2 of the graph viewer, you may not see all edges of this graph by default.
Traversal Graph
The traversalGraph
has been designed to demonstrate filters in traversals.
It has some labels to filter on it. The graph’s vertices are in a collection
called circles
, and it has an edge collection edges
to connect them.
Circles have unique numeric labels. Edges have two boolean attributes
(theFalse
always being false
, theTruth
always being true
) and a label
sorting B - D to the left side, G - K to the right side.
Left and right side split into paths - at B and G, which are each direct
neighbors of the root-node A. Starting from A, the graph has a depth of 3 on
all its paths.
var examples = require("@arangodb/graph-examples/example-graph");
var g = examples.loadGraph("traversalGraph");
db.circles.toArray();
db.edges.toArray();
examples.dropGraph("traversalGraph");
[
{
"_key" : "A",
"_id" : "circles/A",
"_rev" : "_go2WYp6---",
"label" : "1"
},
{
"_key" : "B",
"_id" : "circles/B",
"_rev" : "_go2WYq----",
"label" : "2"
},
{
"_key" : "C",
"_id" : "circles/C",
"_rev" : "_go2WYq---_",
"label" : "3"
},
{
"_key" : "D",
"_id" : "circles/D",
"_rev" : "_go2WYq---A",
"label" : "4"
},
{
"_key" : "E",
"_id" : "circles/E",
"_rev" : "_go2WYq---B",
"label" : "5"
},
{
"_key" : "F",
"_id" : "circles/F",
"_rev" : "_go2WYq---C",
"label" : "6"
},
{
"_key" : "G",
"_id" : "circles/G",
"_rev" : "_go2WYqC---",
"label" : "7"
},
{
"_key" : "H",
"_id" : "circles/H",
"_rev" : "_go2WYqC--_",
"label" : "8"
},
{
"_key" : "I",
"_id" : "circles/I",
"_rev" : "_go2WYqC--A",
"label" : "9"
},
{
"_key" : "J",
"_id" : "circles/J",
"_rev" : "_go2WYqC--B",
"label" : "10"
},
{
"_key" : "K",
"_id" : "circles/K",
"_rev" : "_go2WYqC--C",
"label" : "11"
}
]
[
{
"_key" : "72438",
"_id" : "edges/72438",
"_from" : "circles/A",
"_to" : "circles/B",
"_rev" : "_go2WYqG---",
"theFalse" : false,
"theTruth" : true,
"label" : "left_bar"
},
{
"_key" : "72440",
"_id" : "edges/72440",
"_from" : "circles/B",
"_to" : "circles/C",
"_rev" : "_go2WYqG--_",
"theFalse" : false,
"theTruth" : true,
"label" : "left_blarg"
},
{
"_key" : "72442",
"_id" : "edges/72442",
"_from" : "circles/C",
"_to" : "circles/D",
"_rev" : "_go2WYqG--A",
"theFalse" : false,
"theTruth" : true,
"label" : "left_blorg"
},
{
"_key" : "72444",
"_id" : "edges/72444",
"_from" : "circles/B",
"_to" : "circles/E",
"_rev" : "_go2WYqG--B",
"theFalse" : false,
"theTruth" : true,
"label" : "left_blub"
},
{
"_key" : "72446",
"_id" : "edges/72446",
"_from" : "circles/E",
"_to" : "circles/F",
"_rev" : "_go2WYqG--C",
"theFalse" : false,
"theTruth" : true,
"label" : "left_schubi"
},
{
"_key" : "72448",
"_id" : "edges/72448",
"_from" : "circles/A",
"_to" : "circles/G",
"_rev" : "_go2WYqK---",
"theFalse" : false,
"theTruth" : true,
"label" : "right_foo"
},
{
"_key" : "72450",
"_id" : "edges/72450",
"_from" : "circles/G",
"_to" : "circles/H",
"_rev" : "_go2WYqK--_",
"theFalse" : false,
"theTruth" : true,
"label" : "right_blob"
},
{
"_key" : "72452",
"_id" : "edges/72452",
"_from" : "circles/H",
"_to" : "circles/I",
"_rev" : "_go2WYqK--A",
"theFalse" : false,
"theTruth" : true,
"label" : "right_blub"
},
{
"_key" : "72454",
"_id" : "edges/72454",
"_from" : "circles/G",
"_to" : "circles/J",
"_rev" : "_go2WYqK--B",
"theFalse" : false,
"theTruth" : true,
"label" : "right_zip"
},
{
"_key" : "72456",
"_id" : "edges/72456",
"_from" : "circles/J",
"_to" : "circles/K",
"_rev" : "_go2WYqK--C",
"theFalse" : false,
"theTruth" : true,
"label" : "right_zup"
}
]
Note: With the default traversal depth of 2 of the graph viewer, you may not see all edges of this graph by default.
k Shortest Paths Graph
The vertices in the kShortestPathsGraph
graph are train stations of cities in
Europe and North America. The edges represent train connections between them,
with the travel time for both directions as edge weight.
See the k Shortest Paths page for query examples.
var examples = require("@arangodb/graph-examples/example-graph");
var g = examples.loadGraph("kShortestPathsGraph");
db.places.toArray();
db.connections.toArray();
examples.dropGraph("kShortestPathsGraph");
[
{
"_key" : "Inverness",
"_id" : "places/Inverness",
"_rev" : "_go2WY36---",
"label" : "Inverness"
},
{
"_key" : "Aberdeen",
"_id" : "places/Aberdeen",
"_rev" : "_go2WY36--_",
"label" : "Aberdeen"
},
{
"_key" : "Leuchars",
"_id" : "places/Leuchars",
"_rev" : "_go2WY4----",
"label" : "Leuchars"
},
{
"_key" : "StAndrews",
"_id" : "places/StAndrews",
"_rev" : "_go2WY4---_",
"label" : "StAndrews"
},
{
"_key" : "Edinburgh",
"_id" : "places/Edinburgh",
"_rev" : "_go2WY4---A",
"label" : "Edinburgh"
},
{
"_key" : "Glasgow",
"_id" : "places/Glasgow",
"_rev" : "_go2WY4---B",
"label" : "Glasgow"
},
{
"_key" : "York",
"_id" : "places/York",
"_rev" : "_go2WY4---C",
"label" : "York"
},
{
"_key" : "Carlisle",
"_id" : "places/Carlisle",
"_rev" : "_go2WY4---D",
"label" : "Carlisle"
},
{
"_key" : "Birmingham",
"_id" : "places/Birmingham",
"_rev" : "_go2WY4C---",
"label" : "Birmingham"
},
{
"_key" : "London",
"_id" : "places/London",
"_rev" : "_go2WY4C--_",
"label" : "London"
},
{
"_key" : "Brussels",
"_id" : "places/Brussels",
"_rev" : "_go2WY4C--A",
"label" : "Brussels"
},
{
"_key" : "Cologne",
"_id" : "places/Cologne",
"_rev" : "_go2WY4C--B",
"label" : "Cologne"
},
{
"_key" : "Toronto",
"_id" : "places/Toronto",
"_rev" : "_go2WY4C--C",
"label" : "Toronto"
},
{
"_key" : "Winnipeg",
"_id" : "places/Winnipeg",
"_rev" : "_go2WY4G---",
"label" : "Winnipeg"
},
{
"_key" : "Saskatoon",
"_id" : "places/Saskatoon",
"_rev" : "_go2WY4G--_",
"label" : "Saskatoon"
},
{
"_key" : "Edmonton",
"_id" : "places/Edmonton",
"_rev" : "_go2WY4G--A",
"label" : "Edmonton"
},
{
"_key" : "Jasper",
"_id" : "places/Jasper",
"_rev" : "_go2WY4G--B",
"label" : "Jasper"
},
{
"_key" : "Vancouver",
"_id" : "places/Vancouver",
"_rev" : "_go2WY4G--C",
"label" : "Vancouver"
}
]
[
{
"_key" : "72593",
"_id" : "connections/72593",
"_from" : "places/Inverness",
"_to" : "places/Aberdeen",
"_rev" : "_go2WY4K---",
"travelTime" : 3
},
{
"_key" : "72595",
"_id" : "connections/72595",
"_from" : "places/Aberdeen",
"_to" : "places/Inverness",
"_rev" : "_go2WY4K--_",
"travelTime" : 2.5
},
{
"_key" : "72597",
"_id" : "connections/72597",
"_from" : "places/Aberdeen",
"_to" : "places/Leuchars",
"_rev" : "_go2WY4K--A",
"travelTime" : 1.5
},
{
"_key" : "72599",
"_id" : "connections/72599",
"_from" : "places/Leuchars",
"_to" : "places/Aberdeen",
"_rev" : "_go2WY4K--B",
"travelTime" : 1
},
{
"_key" : "72601",
"_id" : "connections/72601",
"_from" : "places/Leuchars",
"_to" : "places/Edinburgh",
"_rev" : "_go2WY4K--C",
"travelTime" : 1.5
},
{
"_key" : "72603",
"_id" : "connections/72603",
"_from" : "places/Edinburgh",
"_to" : "places/Leuchars",
"_rev" : "_go2WY4K--D",
"travelTime" : 3
},
{
"_key" : "72605",
"_id" : "connections/72605",
"_from" : "places/Edinburgh",
"_to" : "places/Glasgow",
"_rev" : "_go2WY4K--E",
"travelTime" : 1
},
{
"_key" : "72607",
"_id" : "connections/72607",
"_from" : "places/Glasgow",
"_to" : "places/Edinburgh",
"_rev" : "_go2WY4O---",
"travelTime" : 1
},
{
"_key" : "72609",
"_id" : "connections/72609",
"_from" : "places/Edinburgh",
"_to" : "places/York",
"_rev" : "_go2WY4O--_",
"travelTime" : 3.5
},
{
"_key" : "72611",
"_id" : "connections/72611",
"_from" : "places/York",
"_to" : "places/Edinburgh",
"_rev" : "_go2WY4O--A",
"travelTime" : 4
},
{
"_key" : "72613",
"_id" : "connections/72613",
"_from" : "places/Glasgow",
"_to" : "places/Carlisle",
"_rev" : "_go2WY4O--B",
"travelTime" : 1
},
{
"_key" : "72615",
"_id" : "connections/72615",
"_from" : "places/Carlisle",
"_to" : "places/Glasgow",
"_rev" : "_go2WY4O--C",
"travelTime" : 1
},
{
"_key" : "72617",
"_id" : "connections/72617",
"_from" : "places/Carlisle",
"_to" : "places/York",
"_rev" : "_go2WY4S---",
"travelTime" : 2.5
},
{
"_key" : "72619",
"_id" : "connections/72619",
"_from" : "places/York",
"_to" : "places/Carlisle",
"_rev" : "_go2WY4S--_",
"travelTime" : 3.5
},
{
"_key" : "72621",
"_id" : "connections/72621",
"_from" : "places/Carlisle",
"_to" : "places/Birmingham",
"_rev" : "_go2WY4S--A",
"travelTime" : 2
},
{
"_key" : "72623",
"_id" : "connections/72623",
"_from" : "places/Birmingham",
"_to" : "places/Carlisle",
"_rev" : "_go2WY4S--B",
"travelTime" : 1
},
{
"_key" : "72625",
"_id" : "connections/72625",
"_from" : "places/Birmingham",
"_to" : "places/London",
"_rev" : "_go2WY4S--C",
"travelTime" : 1.5
},
{
"_key" : "72627",
"_id" : "connections/72627",
"_from" : "places/London",
"_to" : "places/Birmingham",
"_rev" : "_go2WY4W---",
"travelTime" : 2.5
},
{
"_key" : "72629",
"_id" : "connections/72629",
"_from" : "places/Leuchars",
"_to" : "places/StAndrews",
"_rev" : "_go2WY4W--_",
"travelTime" : 0.2
},
{
"_key" : "72631",
"_id" : "connections/72631",
"_from" : "places/StAndrews",
"_to" : "places/Leuchars",
"_rev" : "_go2WY4W--A",
"travelTime" : 0.2
},
{
"_key" : "72633",
"_id" : "connections/72633",
"_from" : "places/York",
"_to" : "places/London",
"_rev" : "_go2WY4W--B",
"travelTime" : 1.8
},
{
"_key" : "72635",
"_id" : "connections/72635",
"_from" : "places/London",
"_to" : "places/York",
"_rev" : "_go2WY4W--C",
"travelTime" : 2
},
{
"_key" : "72637",
"_id" : "connections/72637",
"_from" : "places/London",
"_to" : "places/Brussels",
"_rev" : "_go2WY4a---",
"travelTime" : 2.5
},
{
"_key" : "72639",
"_id" : "connections/72639",
"_from" : "places/Brussels",
"_to" : "places/London",
"_rev" : "_go2WY4a--_",
"travelTime" : 3.5
},
{
"_key" : "72641",
"_id" : "connections/72641",
"_from" : "places/Brussels",
"_to" : "places/Cologne",
"_rev" : "_go2WY4a--A",
"travelTime" : 2
},
{
"_key" : "72643",
"_id" : "connections/72643",
"_from" : "places/Cologne",
"_to" : "places/Brussels",
"_rev" : "_go2WY4a--B",
"travelTime" : 1.5
},
{
"_key" : "72645",
"_id" : "connections/72645",
"_from" : "places/Toronto",
"_to" : "places/Winnipeg",
"_rev" : "_go2WY4a--C",
"travelTime" : 36
},
{
"_key" : "72647",
"_id" : "connections/72647",
"_from" : "places/Winnipeg",
"_to" : "places/Toronto",
"_rev" : "_go2WY4e---",
"travelTime" : 35
},
{
"_key" : "72649",
"_id" : "connections/72649",
"_from" : "places/Winnipeg",
"_to" : "places/Saskatoon",
"_rev" : "_go2WY4i---",
"travelTime" : 12
},
{
"_key" : "72651",
"_id" : "connections/72651",
"_from" : "places/Saskatoon",
"_to" : "places/Winnipeg",
"_rev" : "_go2WY4i--_",
"travelTime" : 5
},
{
"_key" : "72653",
"_id" : "connections/72653",
"_from" : "places/Saskatoon",
"_to" : "places/Edmonton",
"_rev" : "_go2WY4m---",
"travelTime" : 12
},
{
"_key" : "72655",
"_id" : "connections/72655",
"_from" : "places/Edmonton",
"_to" : "places/Saskatoon",
"_rev" : "_go2WY4m--_",
"travelTime" : 17
},
{
"_key" : "72657",
"_id" : "connections/72657",
"_from" : "places/Edmonton",
"_to" : "places/Jasper",
"_rev" : "_go2WY4m--A",
"travelTime" : 6
},
{
"_key" : "72659",
"_id" : "connections/72659",
"_from" : "places/Jasper",
"_to" : "places/Edmonton",
"_rev" : "_go2WY4m--B",
"travelTime" : 5
},
{
"_key" : "72661",
"_id" : "connections/72661",
"_from" : "places/Jasper",
"_to" : "places/Vancouver",
"_rev" : "_go2WY4q---",
"travelTime" : 12
},
{
"_key" : "72663",
"_id" : "connections/72663",
"_from" : "places/Vancouver",
"_to" : "places/Jasper",
"_rev" : "_go2WY4q--_",
"travelTime" : 13
}
]
Mps Graph
The mps_graph
has been created to demonstrate shortest path algorithms and
the abbreviation stands for multiple path search.
The example graph consists of vertices in the mps_verts
collection and edges
in the mps_edges
collection. It is a simple traversal graph with start node
A and end node C.
With the Shortest Path algorithm, you either get the shortest path A - B - C or A - D - C. With the All Shortest Paths algorithm, both shortest paths are returned.
Example of how to create the graph, inspect its vertices and edges, and delete it again:
var examples = require("@arangodb/graph-examples/example-graph");
var g = examples.loadGraph("mps_graph");
db.mps_verts.toArray();
db.mps_edges.toArray();
examples.dropGraph("mps_graph");
[
{
"_key" : "A",
"_id" : "mps_verts/A",
"_rev" : "_go2WZHG---"
},
{
"_key" : "B",
"_id" : "mps_verts/B",
"_rev" : "_go2WZHK---"
},
{
"_key" : "C",
"_id" : "mps_verts/C",
"_rev" : "_go2WZHK--_"
},
{
"_key" : "D",
"_id" : "mps_verts/D",
"_rev" : "_go2WZHK--A"
},
{
"_key" : "E",
"_id" : "mps_verts/E",
"_rev" : "_go2WZHK--B"
},
{
"_key" : "F",
"_id" : "mps_verts/F",
"_rev" : "_go2WZHK--C"
}
]
[
{
"_key" : "72740",
"_id" : "mps_edges/72740",
"_from" : "mps_verts/A",
"_to" : "mps_verts/B",
"_rev" : "_go2WZHO---",
"vertex" : "A"
},
{
"_key" : "72742",
"_id" : "mps_edges/72742",
"_from" : "mps_verts/A",
"_to" : "mps_verts/E",
"_rev" : "_go2WZHO--_",
"vertex" : "A"
},
{
"_key" : "72744",
"_id" : "mps_edges/72744",
"_from" : "mps_verts/A",
"_to" : "mps_verts/D",
"_rev" : "_go2WZHO--A",
"vertex" : "A"
},
{
"_key" : "72746",
"_id" : "mps_edges/72746",
"_from" : "mps_verts/B",
"_to" : "mps_verts/C",
"_rev" : "_go2WZHO--B",
"vertex" : "B"
},
{
"_key" : "72748",
"_id" : "mps_edges/72748",
"_from" : "mps_verts/D",
"_to" : "mps_verts/C",
"_rev" : "_go2WZHO--C",
"vertex" : "D"
},
{
"_key" : "72750",
"_id" : "mps_edges/72750",
"_from" : "mps_verts/E",
"_to" : "mps_verts/F",
"_rev" : "_go2WZHS---",
"vertex" : "E"
},
{
"_key" : "72752",
"_id" : "mps_edges/72752",
"_from" : "mps_verts/F",
"_to" : "mps_verts/C",
"_rev" : "_go2WZHS--_",
"vertex" : "F"
}
]
World Graph
The worldCountry
graph has as node structure as follows:
world → continent → country → capital
In some cases, edge directions aren’t forward. Therefore, it may get displayed disjunct in the graph viewer.
You can create the graph as a named graph using the name worldCountry
, or as
an anonymous graph (vertex and edge collections only) using the name
worldCountryUnManaged
.
var examples = require("@arangodb/graph-examples/example-graph");
var g = examples.loadGraph("worldCountry");
db.worldVertices.toArray();
db.worldEdges.toArray();
examples.dropGraph("worldCountry");
var g = examples.loadGraph("worldCountryUnManaged");
examples.dropGraph("worldCountryUnManaged");
[
{
"_key" : "world",
"_id" : "worldVertices/world",
"_rev" : "_go2WZvW---",
"name" : "World",
"type" : "root"
},
{
"_key" : "continent-africa",
"_id" : "worldVertices/continent-africa",
"_rev" : "_go2WZvW--_",
"name" : "Africa",
"type" : "continent"
},
{
"_key" : "continent-asia",
"_id" : "worldVertices/continent-asia",
"_rev" : "_go2WZva---",
"name" : "Asia",
"type" : "continent"
},
{
"_key" : "continent-australia",
"_id" : "worldVertices/continent-australia",
"_rev" : "_go2WZva--_",
"name" : "Australia",
"type" : "continent"
},
{
"_key" : "continent-europe",
"_id" : "worldVertices/continent-europe",
"_rev" : "_go2WZva--A",
"name" : "Europe",
"type" : "continent"
},
{
"_key" : "continent-north-america",
"_id" : "worldVertices/continent-north-america",
"_rev" : "_go2WZva--B",
"name" : "North America",
"type" : "continent"
},
{
"_key" : "continent-south-america",
"_id" : "worldVertices/continent-south-america",
"_rev" : "_go2WZva--C",
"name" : "South America",
"type" : "continent"
},
{
"_key" : "country-afghanistan",
"_id" : "worldVertices/country-afghanistan",
"_rev" : "_go2WZva--D",
"name" : "Afghanistan",
"type" : "country",
"code" : "AFG"
},
{
"_key" : "country-albania",
"_id" : "worldVertices/country-albania",
"_rev" : "_go2WZva--E",
"name" : "Albania",
"type" : "country",
"code" : "ALB"
},
{
"_key" : "country-algeria",
"_id" : "worldVertices/country-algeria",
"_rev" : "_go2WZve---",
"name" : "Algeria",
"type" : "country",
"code" : "DZA"
},
{
"_key" : "country-andorra",
"_id" : "worldVertices/country-andorra",
"_rev" : "_go2WZve--_",
"name" : "Andorra",
"type" : "country",
"code" : "AND"
},
{
"_key" : "country-angola",
"_id" : "worldVertices/country-angola",
"_rev" : "_go2WZve--A",
"name" : "Angola",
"type" : "country",
"code" : "AGO"
},
{
"_key" : "country-antigua-and-barbuda",
"_id" : "worldVertices/country-antigua-and-barbuda",
"_rev" : "_go2WZve--B",
"name" : "Antigua and Barbuda",
"type" : "country",
"code" : "ATG"
},
{
"_key" : "country-argentina",
"_id" : "worldVertices/country-argentina",
"_rev" : "_go2WZve--C",
"name" : "Argentina",
"type" : "country",
"code" : "ARG"
},
{
"_key" : "country-australia",
"_id" : "worldVertices/country-australia",
"_rev" : "_go2WZvi---",
"name" : "Australia",
"type" : "country",
"code" : "AUS"
},
{
"_key" : "country-austria",
"_id" : "worldVertices/country-austria",
"_rev" : "_go2WZvi--_",
"name" : "Austria",
"type" : "country",
"code" : "AUT"
},
{
"_key" : "country-bahamas",
"_id" : "worldVertices/country-bahamas",
"_rev" : "_go2WZvi--A",
"name" : "Bahamas",
"type" : "country",
"code" : "BHS"
},
{
"_key" : "country-bahrain",
"_id" : "worldVertices/country-bahrain",
"_rev" : "_go2WZvi--B",
"name" : "Bahrain",
"type" : "country",
"code" : "BHR"
},
{
"_key" : "country-bangladesh",
"_id" : "worldVertices/country-bangladesh",
"_rev" : "_go2WZvi--C",
"name" : "Bangladesh",
"type" : "country",
"code" : "BGD"
},
{
"_key" : "country-barbados",
"_id" : "worldVertices/country-barbados",
"_rev" : "_go2WZvi--D",
"name" : "Barbados",
"type" : "country",
"code" : "BRB"
},
{
"_key" : "country-belgium",
"_id" : "worldVertices/country-belgium",
"_rev" : "_go2WZvi--E",
"name" : "Belgium",
"type" : "country",
"code" : "BEL"
},
{
"_key" : "country-bhutan",
"_id" : "worldVertices/country-bhutan",
"_rev" : "_go2WZvm---",
"name" : "Bhutan",
"type" : "country",
"code" : "BTN"
},
{
"_key" : "country-bolivia",
"_id" : "worldVertices/country-bolivia",
"_rev" : "_go2WZvm--_",
"name" : "Bolivia",
"type" : "country",
"code" : "BOL"
},
{
"_key" : "country-bosnia-and-herzegovina",
"_id" : "worldVertices/country-bosnia-and-herzegovina",
"_rev" : "_go2WZvm--A",
"name" : "Bosnia and Herzegovina",
"type" : "country",
"code" : "BIH"
},
{
"_key" : "country-botswana",
"_id" : "worldVertices/country-botswana",
"_rev" : "_go2WZvm--B",
"name" : "Botswana",
"type" : "country",
"code" : "BWA"
},
{
"_key" : "country-brazil",
"_id" : "worldVertices/country-brazil",
"_rev" : "_go2WZvm--C",
"name" : "Brazil",
"type" : "country",
"code" : "BRA"
},
{
"_key" : "country-brunei",
"_id" : "worldVertices/country-brunei",
"_rev" : "_go2WZvq---",
"name" : "Brunei",
"type" : "country",
"code" : "BRN"
},
{
"_key" : "country-bulgaria",
"_id" : "worldVertices/country-bulgaria",
"_rev" : "_go2WZvq--_",
"name" : "Bulgaria",
"type" : "country",
"code" : "BGR"
},
{
"_key" : "country-burkina-faso",
"_id" : "worldVertices/country-burkina-faso",
"_rev" : "_go2WZvq--A",
"name" : "Burkina Faso",
"type" : "country",
"code" : "BFA"
},
{
"_key" : "country-burundi",
"_id" : "worldVertices/country-burundi",
"_rev" : "_go2WZvq--B",
"name" : "Burundi",
"type" : "country",
"code" : "BDI"
},
{
"_key" : "country-cambodia",
"_id" : "worldVertices/country-cambodia",
"_rev" : "_go2WZvq--C",
"name" : "Cambodia",
"type" : "country",
"code" : "KHM"
},
{
"_key" : "country-cameroon",
"_id" : "worldVertices/country-cameroon",
"_rev" : "_go2WZvq--D",
"name" : "Cameroon",
"type" : "country",
"code" : "CMR"
},
{
"_key" : "country-canada",
"_id" : "worldVertices/country-canada",
"_rev" : "_go2WZvq--E",
"name" : "Canada",
"type" : "country",
"code" : "CAN"
},
{
"_key" : "country-chad",
"_id" : "worldVertices/country-chad",
"_rev" : "_go2WZvq--F",
"name" : "Chad",
"type" : "country",
"code" : "TCD"
},
{
"_key" : "country-chile",
"_id" : "worldVertices/country-chile",
"_rev" : "_go2WZvu---",
"name" : "Chile",
"type" : "country",
"code" : "CHL"
},
{
"_key" : "country-colombia",
"_id" : "worldVertices/country-colombia",
"_rev" : "_go2WZvu--_",
"name" : "Colombia",
"type" : "country",
"code" : "COL"
},
{
"_key" : "country-cote-d-ivoire",
"_id" : "worldVertices/country-cote-d-ivoire",
"_rev" : "_go2WZvu--A",
"name" : "Cote d'Ivoire",
"type" : "country",
"code" : "CIV"
},
{
"_key" : "country-croatia",
"_id" : "worldVertices/country-croatia",
"_rev" : "_go2WZvu--B",
"name" : "Croatia",
"type" : "country",
"code" : "HRV"
},
{
"_key" : "country-czech-republic",
"_id" : "worldVertices/country-czech-republic",
"_rev" : "_go2WZvu--C",
"name" : "Czech Republic",
"type" : "country",
"code" : "CZE"
},
{
"_key" : "country-denmark",
"_id" : "worldVertices/country-denmark",
"_rev" : "_go2WZvu--D",
"name" : "Denmark",
"type" : "country",
"code" : "DNK"
},
{
"_key" : "country-ecuador",
"_id" : "worldVertices/country-ecuador",
"_rev" : "_go2WZvy---",
"name" : "Ecuador",
"type" : "country",
"code" : "ECU"
},
{
"_key" : "country-egypt",
"_id" : "worldVertices/country-egypt",
"_rev" : "_go2WZvy--_",
"name" : "Egypt",
"type" : "country",
"code" : "EGY"
},
{
"_key" : "country-eritrea",
"_id" : "worldVertices/country-eritrea",
"_rev" : "_go2WZvy--A",
"name" : "Eritrea",
"type" : "country",
"code" : "ERI"
},
{
"_key" : "country-finland",
"_id" : "worldVertices/country-finland",
"_rev" : "_go2WZvy--B",
"name" : "Finland",
"type" : "country",
"code" : "FIN"
},
{
"_key" : "country-france",
"_id" : "worldVertices/country-france",
"_rev" : "_go2WZvy--C",
"name" : "France",
"type" : "country",
"code" : "FRA"
},
{
"_key" : "country-germany",
"_id" : "worldVertices/country-germany",
"_rev" : "_go2WZvy--D",
"name" : "Germany",
"type" : "country",
"code" : "DEU"
},
{
"_key" : "country-people-s-republic-of-china",
"_id" : "worldVertices/country-people-s-republic-of-china",
"_rev" : "_go2WZv2---",
"name" : "People's Republic of China",
"type" : "country",
"code" : "CHN"
},
{
"_key" : "capital-algiers",
"_id" : "worldVertices/capital-algiers",
"_rev" : "_go2WZv2--_",
"name" : "Algiers",
"type" : "capital"
},
{
"_key" : "capital-andorra-la-vella",
"_id" : "worldVertices/capital-andorra-la-vella",
"_rev" : "_go2WZv2--A",
"name" : "Andorra la Vella",
"type" : "capital"
},
{
"_key" : "capital-asmara",
"_id" : "worldVertices/capital-asmara",
"_rev" : "_go2WZv2--B",
"name" : "Asmara",
"type" : "capital"
},
{
"_key" : "capital-bandar-seri-begawan",
"_id" : "worldVertices/capital-bandar-seri-begawan",
"_rev" : "_go2WZv2--C",
"name" : "Bandar Seri Begawan",
"type" : "capital"
},
{
"_key" : "capital-beijing",
"_id" : "worldVertices/capital-beijing",
"_rev" : "_go2WZv2--D",
"name" : "Beijing",
"type" : "capital"
},
{
"_key" : "capital-berlin",
"_id" : "worldVertices/capital-berlin",
"_rev" : "_go2WZv2--E",
"name" : "Berlin",
"type" : "capital"
},
{
"_key" : "capital-bogota",
"_id" : "worldVertices/capital-bogota",
"_rev" : "_go2WZv6---",
"name" : "Bogota",
"type" : "capital"
},
{
"_key" : "capital-brasilia",
"_id" : "worldVertices/capital-brasilia",
"_rev" : "_go2WZv6--_",
"name" : "Brasilia",
"type" : "capital"
},
{
"_key" : "capital-bridgetown",
"_id" : "worldVertices/capital-bridgetown",
"_rev" : "_go2WZv6--A",
"name" : "Bridgetown",
"type" : "capital"
},
{
"_key" : "capital-brussels",
"_id" : "worldVertices/capital-brussels",
"_rev" : "_go2WZv6--B",
"name" : "Brussels",
"type" : "capital"
},
{
"_key" : "capital-buenos-aires",
"_id" : "worldVertices/capital-buenos-aires",
"_rev" : "_go2WZv6--C",
"name" : "Buenos Aires",
"type" : "capital"
},
{
"_key" : "capital-bujumbura",
"_id" : "worldVertices/capital-bujumbura",
"_rev" : "_go2WZw----",
"name" : "Bujumbura",
"type" : "capital"
},
{
"_key" : "capital-cairo",
"_id" : "worldVertices/capital-cairo",
"_rev" : "_go2WZwC---",
"name" : "Cairo",
"type" : "capital"
},
{
"_key" : "capital-canberra",
"_id" : "worldVertices/capital-canberra",
"_rev" : "_go2WZwC--_",
"name" : "Canberra",
"type" : "capital"
},
{
"_key" : "capital-copenhagen",
"_id" : "worldVertices/capital-copenhagen",
"_rev" : "_go2WZwC--A",
"name" : "Copenhagen",
"type" : "capital"
},
{
"_key" : "capital-dhaka",
"_id" : "worldVertices/capital-dhaka",
"_rev" : "_go2WZwC--B",
"name" : "Dhaka",
"type" : "capital"
},
{
"_key" : "capital-gaborone",
"_id" : "worldVertices/capital-gaborone",
"_rev" : "_go2WZwC--C",
"name" : "Gaborone",
"type" : "capital"
},
{
"_key" : "capital-helsinki",
"_id" : "worldVertices/capital-helsinki",
"_rev" : "_go2WZwG---",
"name" : "Helsinki",
"type" : "capital"
},
{
"_key" : "capital-kabul",
"_id" : "worldVertices/capital-kabul",
"_rev" : "_go2WZwG--_",
"name" : "Kabul",
"type" : "capital"
},
{
"_key" : "capital-la-paz",
"_id" : "worldVertices/capital-la-paz",
"_rev" : "_go2WZwG--A",
"name" : "La Paz",
"type" : "capital"
},
{
"_key" : "capital-luanda",
"_id" : "worldVertices/capital-luanda",
"_rev" : "_go2WZwG--B",
"name" : "Luanda",
"type" : "capital"
},
{
"_key" : "capital-manama",
"_id" : "worldVertices/capital-manama",
"_rev" : "_go2WZwG--C",
"name" : "Manama",
"type" : "capital"
},
{
"_key" : "capital-nassau",
"_id" : "worldVertices/capital-nassau",
"_rev" : "_go2WZwG--D",
"name" : "Nassau",
"type" : "capital"
},
{
"_key" : "capital-n-djamena",
"_id" : "worldVertices/capital-n-djamena",
"_rev" : "_go2WZwK---",
"name" : "N'Djamena",
"type" : "capital"
},
{
"_key" : "capital-ottawa",
"_id" : "worldVertices/capital-ottawa",
"_rev" : "_go2WZwK--_",
"name" : "Ottawa",
"type" : "capital"
},
{
"_key" : "capital-ouagadougou",
"_id" : "worldVertices/capital-ouagadougou",
"_rev" : "_go2WZwK--A",
"name" : "Ouagadougou",
"type" : "capital"
},
{
"_key" : "capital-paris",
"_id" : "worldVertices/capital-paris",
"_rev" : "_go2WZwK--B",
"name" : "Paris",
"type" : "capital"
},
{
"_key" : "capital-phnom-penh",
"_id" : "worldVertices/capital-phnom-penh",
"_rev" : "_go2WZwK--C",
"name" : "Phnom Penh",
"type" : "capital"
},
{
"_key" : "capital-prague",
"_id" : "worldVertices/capital-prague",
"_rev" : "_go2WZwK--D",
"name" : "Prague",
"type" : "capital"
},
{
"_key" : "capital-quito",
"_id" : "worldVertices/capital-quito",
"_rev" : "_go2WZwO---",
"name" : "Quito",
"type" : "capital"
},
{
"_key" : "capital-saint-john-s",
"_id" : "worldVertices/capital-saint-john-s",
"_rev" : "_go2WZwO--_",
"name" : "Saint John's",
"type" : "capital"
},
{
"_key" : "capital-santiago",
"_id" : "worldVertices/capital-santiago",
"_rev" : "_go2WZwO--A",
"name" : "Santiago",
"type" : "capital"
},
{
"_key" : "capital-sarajevo",
"_id" : "worldVertices/capital-sarajevo",
"_rev" : "_go2WZwO--B",
"name" : "Sarajevo",
"type" : "capital"
},
{
"_key" : "capital-sofia",
"_id" : "worldVertices/capital-sofia",
"_rev" : "_go2WZwO--C",
"name" : "Sofia",
"type" : "capital"
},
{
"_key" : "capital-thimphu",
"_id" : "worldVertices/capital-thimphu",
"_rev" : "_go2WZwO--D",
"name" : "Thimphu",
"type" : "capital"
},
{
"_key" : "capital-tirana",
"_id" : "worldVertices/capital-tirana",
"_rev" : "_go2WZwS---",
"name" : "Tirana",
"type" : "capital"
},
{
"_key" : "capital-vienna",
"_id" : "worldVertices/capital-vienna",
"_rev" : "_go2WZwS--_",
"name" : "Vienna",
"type" : "capital"
},
{
"_key" : "capital-yamoussoukro",
"_id" : "worldVertices/capital-yamoussoukro",
"_rev" : "_go2WZwS--A",
"name" : "Yamoussoukro",
"type" : "capital"
},
{
"_key" : "capital-yaounde",
"_id" : "worldVertices/capital-yaounde",
"_rev" : "_go2WZwS--B",
"name" : "Yaounde",
"type" : "capital"
},
{
"_key" : "capital-zagreb",
"_id" : "worldVertices/capital-zagreb",
"_rev" : "_go2WZwS--C",
"name" : "Zagreb",
"type" : "capital"
}
]
[
{
"_key" : "72910",
"_id" : "worldEdges/72910",
"_from" : "worldVertices/continent-africa",
"_to" : "worldVertices/world",
"_rev" : "_go2WZwS--D",
"type" : "is-in"
},
{
"_key" : "72912",
"_id" : "worldEdges/72912",
"_from" : "worldVertices/continent-asia",
"_to" : "worldVertices/world",
"_rev" : "_go2WZwW---",
"type" : "is-in"
},
{
"_key" : "72914",
"_id" : "worldEdges/72914",
"_from" : "worldVertices/continent-australia",
"_to" : "worldVertices/world",
"_rev" : "_go2WZwW--_",
"type" : "is-in"
},
{
"_key" : "72916",
"_id" : "worldEdges/72916",
"_from" : "worldVertices/continent-europe",
"_to" : "worldVertices/world",
"_rev" : "_go2WZwW--A",
"type" : "is-in"
},
{
"_key" : "72918",
"_id" : "worldEdges/72918",
"_from" : "worldVertices/continent-north-america",
"_to" : "worldVertices/world",
"_rev" : "_go2WZwW--B",
"type" : "is-in"
},
{
"_key" : "72920",
"_id" : "worldEdges/72920",
"_from" : "worldVertices/continent-south-america",
"_to" : "worldVertices/world",
"_rev" : "_go2WZwW--C",
"type" : "is-in"
},
{
"_key" : "72922",
"_id" : "worldEdges/72922",
"_from" : "worldVertices/country-afghanistan",
"_to" : "worldVertices/continent-asia",
"_rev" : "_go2WZwa---",
"type" : "is-in"
},
{
"_key" : "72924",
"_id" : "worldEdges/72924",
"_from" : "worldVertices/country-albania",
"_to" : "worldVertices/continent-europe",
"_rev" : "_go2WZwa--_",
"type" : "is-in"
},
{
"_key" : "72926",
"_id" : "worldEdges/72926",
"_from" : "worldVertices/country-algeria",
"_to" : "worldVertices/continent-africa",
"_rev" : "_go2WZwa--A",
"type" : "is-in"
},
{
"_key" : "72928",
"_id" : "worldEdges/72928",
"_from" : "worldVertices/country-andorra",
"_to" : "worldVertices/continent-europe",
"_rev" : "_go2WZwa--B",
"type" : "is-in"
},
{
"_key" : "72930",
"_id" : "worldEdges/72930",
"_from" : "worldVertices/country-angola",
"_to" : "worldVertices/continent-africa",
"_rev" : "_go2WZwa--C",
"type" : "is-in"
},
{
"_key" : "72932",
"_id" : "worldEdges/72932",
"_from" : "worldVertices/country-antigua-and-barbuda",
"_to" : "worldVertices/continent-north-america",
"_rev" : "_go2WZwe---",
"type" : "is-in"
},
{
"_key" : "72934",
"_id" : "worldEdges/72934",
"_from" : "worldVertices/country-argentina",
"_to" : "worldVertices/continent-south-america",
"_rev" : "_go2WZwe--_",
"type" : "is-in"
},
{
"_key" : "72936",
"_id" : "worldEdges/72936",
"_from" : "worldVertices/country-australia",
"_to" : "worldVertices/continent-australia",
"_rev" : "_go2WZwe--A",
"type" : "is-in"
},
{
"_key" : "72938",
"_id" : "worldEdges/72938",
"_from" : "worldVertices/country-austria",
"_to" : "worldVertices/continent-europe",
"_rev" : "_go2WZwe--B",
"type" : "is-in"
},
{
"_key" : "72940",
"_id" : "worldEdges/72940",
"_from" : "worldVertices/country-bahamas",
"_to" : "worldVertices/continent-north-america",
"_rev" : "_go2WZwe--C",
"type" : "is-in"
},
{
"_key" : "72942",
"_id" : "worldEdges/72942",
"_from" : "worldVertices/country-bahrain",
"_to" : "worldVertices/continent-asia",
"_rev" : "_go2WZwe--D",
"type" : "is-in"
},
{
"_key" : "72944",
"_id" : "worldEdges/72944",
"_from" : "worldVertices/country-bangladesh",
"_to" : "worldVertices/continent-asia",
"_rev" : "_go2WZwi---",
"type" : "is-in"
},
{
"_key" : "72946",
"_id" : "worldEdges/72946",
"_from" : "worldVertices/country-barbados",
"_to" : "worldVertices/continent-north-america",
"_rev" : "_go2WZwi--_",
"type" : "is-in"
},
{
"_key" : "72948",
"_id" : "worldEdges/72948",
"_from" : "worldVertices/country-belgium",
"_to" : "worldVertices/continent-europe",
"_rev" : "_go2WZwi--A",
"type" : "is-in"
},
{
"_key" : "72950",
"_id" : "worldEdges/72950",
"_from" : "worldVertices/country-bhutan",
"_to" : "worldVertices/continent-asia",
"_rev" : "_go2WZwi--B",
"type" : "is-in"
},
{
"_key" : "72952",
"_id" : "worldEdges/72952",
"_from" : "worldVertices/country-bolivia",
"_to" : "worldVertices/continent-south-america",
"_rev" : "_go2WZwi--C",
"type" : "is-in"
},
{
"_key" : "72954",
"_id" : "worldEdges/72954",
"_from" : "worldVertices/country-bosnia-and-herzegovina",
"_to" : "worldVertices/continent-europe",
"_rev" : "_go2WZwi--D",
"type" : "is-in"
},
{
"_key" : "72956",
"_id" : "worldEdges/72956",
"_from" : "worldVertices/country-botswana",
"_to" : "worldVertices/continent-africa",
"_rev" : "_go2WZwm---",
"type" : "is-in"
},
{
"_key" : "72958",
"_id" : "worldEdges/72958",
"_from" : "worldVertices/country-brazil",
"_to" : "worldVertices/continent-south-america",
"_rev" : "_go2WZwm--_",
"type" : "is-in"
},
{
"_key" : "72960",
"_id" : "worldEdges/72960",
"_from" : "worldVertices/country-brunei",
"_to" : "worldVertices/continent-asia",
"_rev" : "_go2WZwm--A",
"type" : "is-in"
},
{
"_key" : "72962",
"_id" : "worldEdges/72962",
"_from" : "worldVertices/country-bulgaria",
"_to" : "worldVertices/continent-europe",
"_rev" : "_go2WZwm--B",
"type" : "is-in"
},
{
"_key" : "72964",
"_id" : "worldEdges/72964",
"_from" : "worldVertices/country-burkina-faso",
"_to" : "worldVertices/continent-africa",
"_rev" : "_go2WZwm--C",
"type" : "is-in"
},
{
"_key" : "72966",
"_id" : "worldEdges/72966",
"_from" : "worldVertices/country-burundi",
"_to" : "worldVertices/continent-africa",
"_rev" : "_go2WZwm--D",
"type" : "is-in"
},
{
"_key" : "72968",
"_id" : "worldEdges/72968",
"_from" : "worldVertices/country-cambodia",
"_to" : "worldVertices/continent-asia",
"_rev" : "_go2WZwq---",
"type" : "is-in"
},
{
"_key" : "72970",
"_id" : "worldEdges/72970",
"_from" : "worldVertices/country-cameroon",
"_to" : "worldVertices/continent-africa",
"_rev" : "_go2WZwu---",
"type" : "is-in"
},
{
"_key" : "72972",
"_id" : "worldEdges/72972",
"_from" : "worldVertices/country-canada",
"_to" : "worldVertices/continent-north-america",
"_rev" : "_go2WZwu--_",
"type" : "is-in"
},
{
"_key" : "72974",
"_id" : "worldEdges/72974",
"_from" : "worldVertices/country-chad",
"_to" : "worldVertices/continent-africa",
"_rev" : "_go2WZwu--A",
"type" : "is-in"
},
{
"_key" : "72976",
"_id" : "worldEdges/72976",
"_from" : "worldVertices/country-chile",
"_to" : "worldVertices/continent-south-america",
"_rev" : "_go2WZwu--B",
"type" : "is-in"
},
{
"_key" : "72978",
"_id" : "worldEdges/72978",
"_from" : "worldVertices/country-colombia",
"_to" : "worldVertices/continent-south-america",
"_rev" : "_go2WZwu--C",
"type" : "is-in"
},
{
"_key" : "72980",
"_id" : "worldEdges/72980",
"_from" : "worldVertices/country-cote-d-ivoire",
"_to" : "worldVertices/continent-africa",
"_rev" : "_go2WZwu--D",
"type" : "is-in"
},
{
"_key" : "72982",
"_id" : "worldEdges/72982",
"_from" : "worldVertices/country-croatia",
"_to" : "worldVertices/continent-europe",
"_rev" : "_go2WZwy---",
"type" : "is-in"
},
{
"_key" : "72984",
"_id" : "worldEdges/72984",
"_from" : "worldVertices/country-czech-republic",
"_to" : "worldVertices/continent-europe",
"_rev" : "_go2WZwy--_",
"type" : "is-in"
},
{
"_key" : "72986",
"_id" : "worldEdges/72986",
"_from" : "worldVertices/country-denmark",
"_to" : "worldVertices/continent-europe",
"_rev" : "_go2WZwy--A",
"type" : "is-in"
},
{
"_key" : "72988",
"_id" : "worldEdges/72988",
"_from" : "worldVertices/country-ecuador",
"_to" : "worldVertices/continent-south-america",
"_rev" : "_go2WZwy--B",
"type" : "is-in"
},
{
"_key" : "72990",
"_id" : "worldEdges/72990",
"_from" : "worldVertices/country-egypt",
"_to" : "worldVertices/continent-africa",
"_rev" : "_go2WZwy--C",
"type" : "is-in"
},
{
"_key" : "72992",
"_id" : "worldEdges/72992",
"_from" : "worldVertices/country-eritrea",
"_to" : "worldVertices/continent-africa",
"_rev" : "_go2WZw2---",
"type" : "is-in"
},
{
"_key" : "72994",
"_id" : "worldEdges/72994",
"_from" : "worldVertices/country-finland",
"_to" : "worldVertices/continent-europe",
"_rev" : "_go2WZw2--_",
"type" : "is-in"
},
{
"_key" : "72996",
"_id" : "worldEdges/72996",
"_from" : "worldVertices/country-france",
"_to" : "worldVertices/continent-europe",
"_rev" : "_go2WZw2--A",
"type" : "is-in"
},
{
"_key" : "72998",
"_id" : "worldEdges/72998",
"_from" : "worldVertices/country-germany",
"_to" : "worldVertices/continent-europe",
"_rev" : "_go2WZw2--B",
"type" : "is-in"
},
{
"_key" : "73000",
"_id" : "worldEdges/73000",
"_from" : "worldVertices/country-people-s-republic-of-china",
"_to" : "worldVertices/continent-asia",
"_rev" : "_go2WZw2--C",
"type" : "is-in"
},
{
"_key" : "73002",
"_id" : "worldEdges/73002",
"_from" : "worldVertices/capital-algiers",
"_to" : "worldVertices/country-algeria",
"_rev" : "_go2WZw2--D",
"type" : "is-in"
},
{
"_key" : "73004",
"_id" : "worldEdges/73004",
"_from" : "worldVertices/capital-andorra-la-vella",
"_to" : "worldVertices/country-andorra",
"_rev" : "_go2WZw6---",
"type" : "is-in"
},
{
"_key" : "73006",
"_id" : "worldEdges/73006",
"_from" : "worldVertices/capital-asmara",
"_to" : "worldVertices/country-eritrea",
"_rev" : "_go2WZw6--_",
"type" : "is-in"
},
{
"_key" : "73008",
"_id" : "worldEdges/73008",
"_from" : "worldVertices/capital-bandar-seri-begawan",
"_to" : "worldVertices/country-brunei",
"_rev" : "_go2WZw6--A",
"type" : "is-in"
},
{
"_key" : "73010",
"_id" : "worldEdges/73010",
"_from" : "worldVertices/capital-beijing",
"_to" : "worldVertices/country-people-s-republic-of-china",
"_rev" : "_go2WZw6--B",
"type" : "is-in"
},
{
"_key" : "73012",
"_id" : "worldEdges/73012",
"_from" : "worldVertices/capital-berlin",
"_to" : "worldVertices/country-germany",
"_rev" : "_go2WZw6--C",
"type" : "is-in"
},
{
"_key" : "73014",
"_id" : "worldEdges/73014",
"_from" : "worldVertices/capital-bogota",
"_to" : "worldVertices/country-colombia",
"_rev" : "_go2WZx----",
"type" : "is-in"
},
{
"_key" : "73016",
"_id" : "worldEdges/73016",
"_from" : "worldVertices/capital-brasilia",
"_to" : "worldVertices/country-brazil",
"_rev" : "_go2WZx---_",
"type" : "is-in"
},
{
"_key" : "73018",
"_id" : "worldEdges/73018",
"_from" : "worldVertices/capital-bridgetown",
"_to" : "worldVertices/country-barbados",
"_rev" : "_go2WZx---A",
"type" : "is-in"
},
{
"_key" : "73020",
"_id" : "worldEdges/73020",
"_from" : "worldVertices/capital-brussels",
"_to" : "worldVertices/country-belgium",
"_rev" : "_go2WZx---B",
"type" : "is-in"
},
{
"_key" : "73022",
"_id" : "worldEdges/73022",
"_from" : "worldVertices/capital-buenos-aires",
"_to" : "worldVertices/country-argentina",
"_rev" : "_go2WZxC---",
"type" : "is-in"
},
{
"_key" : "73024",
"_id" : "worldEdges/73024",
"_from" : "worldVertices/capital-bujumbura",
"_to" : "worldVertices/country-burundi",
"_rev" : "_go2WZxC--_",
"type" : "is-in"
},
{
"_key" : "73026",
"_id" : "worldEdges/73026",
"_from" : "worldVertices/capital-cairo",
"_to" : "worldVertices/country-egypt",
"_rev" : "_go2WZxC--A",
"type" : "is-in"
},
{
"_key" : "73028",
"_id" : "worldEdges/73028",
"_from" : "worldVertices/capital-canberra",
"_to" : "worldVertices/country-australia",
"_rev" : "_go2WZxC--B",
"type" : "is-in"
},
{
"_key" : "73030",
"_id" : "worldEdges/73030",
"_from" : "worldVertices/capital-copenhagen",
"_to" : "worldVertices/country-denmark",
"_rev" : "_go2WZxC--C",
"type" : "is-in"
},
{
"_key" : "73032",
"_id" : "worldEdges/73032",
"_from" : "worldVertices/capital-dhaka",
"_to" : "worldVertices/country-bangladesh",
"_rev" : "_go2WZxG---",
"type" : "is-in"
},
{
"_key" : "73034",
"_id" : "worldEdges/73034",
"_from" : "worldVertices/capital-gaborone",
"_to" : "worldVertices/country-botswana",
"_rev" : "_go2WZxG--_",
"type" : "is-in"
},
{
"_key" : "73036",
"_id" : "worldEdges/73036",
"_from" : "worldVertices/capital-helsinki",
"_to" : "worldVertices/country-finland",
"_rev" : "_go2WZxG--A",
"type" : "is-in"
},
{
"_key" : "73038",
"_id" : "worldEdges/73038",
"_from" : "worldVertices/capital-kabul",
"_to" : "worldVertices/country-afghanistan",
"_rev" : "_go2WZxG--B",
"type" : "is-in"
},
{
"_key" : "73040",
"_id" : "worldEdges/73040",
"_from" : "worldVertices/capital-la-paz",
"_to" : "worldVertices/country-bolivia",
"_rev" : "_go2WZxG--C",
"type" : "is-in"
},
{
"_key" : "73042",
"_id" : "worldEdges/73042",
"_from" : "worldVertices/capital-luanda",
"_to" : "worldVertices/country-angola",
"_rev" : "_go2WZxK---",
"type" : "is-in"
},
{
"_key" : "73044",
"_id" : "worldEdges/73044",
"_from" : "worldVertices/capital-manama",
"_to" : "worldVertices/country-bahrain",
"_rev" : "_go2WZxK--_",
"type" : "is-in"
},
{
"_key" : "73046",
"_id" : "worldEdges/73046",
"_from" : "worldVertices/capital-nassau",
"_to" : "worldVertices/country-bahamas",
"_rev" : "_go2WZxK--A",
"type" : "is-in"
},
{
"_key" : "73048",
"_id" : "worldEdges/73048",
"_from" : "worldVertices/capital-n-djamena",
"_to" : "worldVertices/country-chad",
"_rev" : "_go2WZxK--B",
"type" : "is-in"
},
{
"_key" : "73050",
"_id" : "worldEdges/73050",
"_from" : "worldVertices/capital-ottawa",
"_to" : "worldVertices/country-canada",
"_rev" : "_go2WZxK--C",
"type" : "is-in"
},
{
"_key" : "73052",
"_id" : "worldEdges/73052",
"_from" : "worldVertices/capital-ouagadougou",
"_to" : "worldVertices/country-burkina-faso",
"_rev" : "_go2WZxO---",
"type" : "is-in"
},
{
"_key" : "73054",
"_id" : "worldEdges/73054",
"_from" : "worldVertices/capital-paris",
"_to" : "worldVertices/country-france",
"_rev" : "_go2WZxO--_",
"type" : "is-in"
},
{
"_key" : "73056",
"_id" : "worldEdges/73056",
"_from" : "worldVertices/capital-phnom-penh",
"_to" : "worldVertices/country-cambodia",
"_rev" : "_go2WZxO--A",
"type" : "is-in"
},
{
"_key" : "73058",
"_id" : "worldEdges/73058",
"_from" : "worldVertices/capital-prague",
"_to" : "worldVertices/country-czech-republic",
"_rev" : "_go2WZxO--B",
"type" : "is-in"
},
{
"_key" : "73060",
"_id" : "worldEdges/73060",
"_from" : "worldVertices/capital-quito",
"_to" : "worldVertices/country-ecuador",
"_rev" : "_go2WZxO--C",
"type" : "is-in"
},
{
"_key" : "73062",
"_id" : "worldEdges/73062",
"_from" : "worldVertices/capital-saint-john-s",
"_to" : "worldVertices/country-antigua-and-barbuda",
"_rev" : "_go2WZxO--D",
"type" : "is-in"
},
{
"_key" : "73064",
"_id" : "worldEdges/73064",
"_from" : "worldVertices/capital-santiago",
"_to" : "worldVertices/country-chile",
"_rev" : "_go2WZxS---",
"type" : "is-in"
},
{
"_key" : "73066",
"_id" : "worldEdges/73066",
"_from" : "worldVertices/capital-sarajevo",
"_to" : "worldVertices/country-bosnia-and-herzegovina",
"_rev" : "_go2WZxS--_",
"type" : "is-in"
},
{
"_key" : "73068",
"_id" : "worldEdges/73068",
"_from" : "worldVertices/capital-sofia",
"_to" : "worldVertices/country-bulgaria",
"_rev" : "_go2WZxS--A",
"type" : "is-in"
},
{
"_key" : "73070",
"_id" : "worldEdges/73070",
"_from" : "worldVertices/capital-thimphu",
"_to" : "worldVertices/country-bhutan",
"_rev" : "_go2WZxS--B",
"type" : "is-in"
},
{
"_key" : "73072",
"_id" : "worldEdges/73072",
"_from" : "worldVertices/capital-tirana",
"_to" : "worldVertices/country-albania",
"_rev" : "_go2WZxS--C",
"type" : "is-in"
},
{
"_key" : "73074",
"_id" : "worldEdges/73074",
"_from" : "worldVertices/capital-vienna",
"_to" : "worldVertices/country-austria",
"_rev" : "_go2WZxW---",
"type" : "is-in"
},
{
"_key" : "73076",
"_id" : "worldEdges/73076",
"_from" : "worldVertices/capital-yamoussoukro",
"_to" : "worldVertices/country-cote-d-ivoire",
"_rev" : "_go2WZxW--_",
"type" : "is-in"
},
{
"_key" : "73078",
"_id" : "worldEdges/73078",
"_from" : "worldVertices/capital-yaounde",
"_to" : "worldVertices/country-cameroon",
"_rev" : "_go2WZxW--A",
"type" : "is-in"
},
{
"_key" : "73080",
"_id" : "worldEdges/73080",
"_from" : "worldVertices/capital-zagreb",
"_to" : "worldVertices/country-croatia",
"_rev" : "_go2WZxW--B",
"type" : "is-in"
}
]
Social Graph
The social
graph is a set of persons and their relations. The graph has
female
and male
persons as vertices in two vertex collections.
The edges are their connections and stored in the relation
edge collection.
Example of how to create the graph, inspect its vertices and edges, and delete it again:
var examples = require("@arangodb/graph-examples/example-graph");
var graph = examples.loadGraph("social");
db.female.toArray()
db.male.toArray()
db.relation.toArray()
examples.dropGraph("social");
[
{
"_key" : "alice",
"_id" : "female/alice",
"_rev" : "_go2Wamm---",
"name" : "Alice"
},
{
"_key" : "diana",
"_id" : "female/diana",
"_rev" : "_go2Wamq--A",
"name" : "Diana"
}
]
[
{
"_key" : "bob",
"_id" : "male/bob",
"_rev" : "_go2Wamq---",
"name" : "Bob"
},
{
"_key" : "charly",
"_id" : "male/charly",
"_rev" : "_go2Wamq--_",
"name" : "Charly"
}
]
[
{
"_key" : "73492",
"_id" : "relation/73492",
"_from" : "female/alice",
"_to" : "male/bob",
"_rev" : "_go2Wamq--B",
"type" : "married",
"vertex" : "alice"
},
{
"_key" : "73494",
"_id" : "relation/73494",
"_from" : "female/alice",
"_to" : "male/charly",
"_rev" : "_go2Wamq--C",
"type" : "friend",
"vertex" : "alice"
},
{
"_key" : "73496",
"_id" : "relation/73496",
"_from" : "male/charly",
"_to" : "female/diana",
"_rev" : "_go2Wamu---",
"type" : "married",
"vertex" : "charly"
},
{
"_key" : "73498",
"_id" : "relation/73498",
"_from" : "male/bob",
"_to" : "female/diana",
"_rev" : "_go2Wamu--_",
"type" : "friend",
"vertex" : "bob"
}
]
City Graph
The routeplanner
graph is a set of european cities and their fictional
traveling distances as connections. The graph has the cities as vertices in
multiple vertex collections (germanCity
and frenchCity
). The edges are their
interconnections in several edge collections (frenchHighway
, germanHighway
,
internationalHighway
).
Example of how to create the graph, inspect its edges and vertices, and delete it again:
var examples = require("@arangodb/graph-examples/example-graph");
var g = examples.loadGraph("routeplanner");
db.frenchCity.toArray();
db.germanCity.toArray();
db.germanHighway.toArray();
db.frenchHighway.toArray();
db.internationalHighway.toArray();
examples.dropGraph("routeplanner");
[
{
"_key" : "Lyon",
"_id" : "frenchCity/Lyon",
"_rev" : "_go2WbG2---",
"population" : 80000,
"isCapital" : false,
"geometry" : {
"type" : "Point",
"coordinates" : [
4.84,
45.76
]
}
},
{
"_key" : "Paris",
"_id" : "frenchCity/Paris",
"_rev" : "_go2WbG2--_",
"population" : 4000000,
"isCapital" : true,
"geometry" : {
"type" : "Point",
"coordinates" : [
2.3508,
48.8567
]
}
}
]
[
{
"_key" : "Berlin",
"_id" : "germanCity/Berlin",
"_rev" : "_go2WbGy---",
"population" : 3000000,
"isCapital" : true,
"geometry" : {
"type" : "Point",
"coordinates" : [
13.3833,
52.5167
]
}
},
{
"_key" : "Cologne",
"_id" : "germanCity/Cologne",
"_rev" : "_go2WbGy--_",
"population" : 1000000,
"isCapital" : false,
"geometry" : {
"type" : "Point",
"coordinates" : [
6.9528,
50.9364
]
}
},
{
"_key" : "Hamburg",
"_id" : "germanCity/Hamburg",
"_rev" : "_go2WbGy--A",
"population" : 1000000,
"isCapital" : false,
"geometry" : {
"type" : "Point",
"coordinates" : [
10.0014,
53.5653
]
}
}
]
[
{
"_key" : "73653",
"_id" : "germanHighway/73653",
"_from" : "germanCity/Berlin",
"_to" : "germanCity/Cologne",
"_rev" : "_go2WbG6--_",
"distance" : 850
},
{
"_key" : "73655",
"_id" : "germanHighway/73655",
"_from" : "germanCity/Berlin",
"_to" : "germanCity/Hamburg",
"_rev" : "_go2WbHC---",
"distance" : 400
},
{
"_key" : "73657",
"_id" : "germanHighway/73657",
"_from" : "germanCity/Hamburg",
"_to" : "germanCity/Cologne",
"_rev" : "_go2WbHC--_",
"distance" : 500
}
]
[
{
"_key" : "73659",
"_id" : "frenchHighway/73659",
"_from" : "frenchCity/Paris",
"_to" : "frenchCity/Lyon",
"_rev" : "_go2WbHC--A",
"distance" : 550
}
]
[
{
"_key" : "73661",
"_id" : "internationalHighway/73661",
"_from" : "germanCity/Berlin",
"_to" : "frenchCity/Lyon",
"_rev" : "_go2WbHC--B",
"distance" : 1100
},
{
"_key" : "73663",
"_id" : "internationalHighway/73663",
"_from" : "germanCity/Berlin",
"_to" : "frenchCity/Paris",
"_rev" : "_go2WbHC--C",
"distance" : 1200
},
{
"_key" : "73665",
"_id" : "internationalHighway/73665",
"_from" : "germanCity/Hamburg",
"_to" : "frenchCity/Paris",
"_rev" : "_go2WbHC--D",
"distance" : 900
},
{
"_key" : "73667",
"_id" : "internationalHighway/73667",
"_from" : "germanCity/Hamburg",
"_to" : "frenchCity/Lyon",
"_rev" : "_go2WbHG---",
"distance" : 1300
},
{
"_key" : "73669",
"_id" : "internationalHighway/73669",
"_from" : "germanCity/Cologne",
"_to" : "frenchCity/Lyon",
"_rev" : "_go2WbHG--_",
"distance" : 700
},
{
"_key" : "73671",
"_id" : "internationalHighway/73671",
"_from" : "germanCity/Cologne",
"_to" : "frenchCity/Paris",
"_rev" : "_go2WbHG--A",
"distance" : 550
}
]
Connected Components Graph
A small example graph comprised of components
(vertices) and connections
(edges). Good for trying out Pregel algorithms such as Weakly Connected
Components (WCC).
Also see:
var examples = require("@arangodb/graph-examples/example-graph");
var g = examples.loadGraph("connectedComponentsGraph");
db.components.toArray();
db.connections.toArray();
examples.dropGraph("connectedComponentsGraph");
[
{
"_key" : "A1",
"_id" : "components/A1",
"_rev" : "_go2Wbde---"
},
{
"_key" : "A2",
"_id" : "components/A2",
"_rev" : "_go2Wbde--_"
},
{
"_key" : "A3",
"_id" : "components/A3",
"_rev" : "_go2Wbde--A"
},
{
"_key" : "A4",
"_id" : "components/A4",
"_rev" : "_go2Wbde--B"
},
{
"_key" : "B1",
"_id" : "components/B1",
"_rev" : "_go2Wbdi---"
},
{
"_key" : "B3",
"_id" : "components/B3",
"_rev" : "_go2Wbdi--_"
},
{
"_key" : "B2",
"_id" : "components/B2",
"_rev" : "_go2Wbdi--A"
},
{
"_key" : "B4",
"_id" : "components/B4",
"_rev" : "_go2Wbdi--B"
},
{
"_key" : "B6",
"_id" : "components/B6",
"_rev" : "_go2Wbdi--C"
},
{
"_key" : "B5",
"_id" : "components/B5",
"_rev" : "_go2Wbdi--D"
},
{
"_key" : "B7",
"_id" : "components/B7",
"_rev" : "_go2Wbdm---"
},
{
"_key" : "B8",
"_id" : "components/B8",
"_rev" : "_go2Wbdm--_"
},
{
"_key" : "B9",
"_id" : "components/B9",
"_rev" : "_go2Wbdm--A"
},
{
"_key" : "B10",
"_id" : "components/B10",
"_rev" : "_go2Wbdm--B"
},
{
"_key" : "B19",
"_id" : "components/B19",
"_rev" : "_go2Wbdm--C"
},
{
"_key" : "B11",
"_id" : "components/B11",
"_rev" : "_go2Wbdm--D"
},
{
"_key" : "B12",
"_id" : "components/B12",
"_rev" : "_go2Wbdq---"
},
{
"_key" : "B13",
"_id" : "components/B13",
"_rev" : "_go2Wbdq--_"
},
{
"_key" : "B20",
"_id" : "components/B20",
"_rev" : "_go2Wbdq--A"
},
{
"_key" : "B14",
"_id" : "components/B14",
"_rev" : "_go2Wbdq--B"
},
{
"_key" : "B15",
"_id" : "components/B15",
"_rev" : "_go2Wbdq--C"
},
{
"_key" : "B16",
"_id" : "components/B16",
"_rev" : "_go2Wbdq--D"
},
{
"_key" : "B17",
"_id" : "components/B17",
"_rev" : "_go2Wbdu---"
},
{
"_key" : "B18",
"_id" : "components/B18",
"_rev" : "_go2Wbdu--_"
},
{
"_key" : "B21",
"_id" : "components/B21",
"_rev" : "_go2Wbdu--A"
},
{
"_key" : "B22",
"_id" : "components/B22",
"_rev" : "_go2Wbdu--B"
},
{
"_key" : "C1",
"_id" : "components/C1",
"_rev" : "_go2Wbdu--C"
},
{
"_key" : "C2",
"_id" : "components/C2",
"_rev" : "_go2Wbdu--D"
},
{
"_key" : "C3",
"_id" : "components/C3",
"_rev" : "_go2Wbdy---"
},
{
"_key" : "C4",
"_id" : "components/C4",
"_rev" : "_go2Wbdy--_"
},
{
"_key" : "C5",
"_id" : "components/C5",
"_rev" : "_go2Wbdy--A"
},
{
"_key" : "C7",
"_id" : "components/C7",
"_rev" : "_go2Wbdy--B"
},
{
"_key" : "C6",
"_id" : "components/C6",
"_rev" : "_go2Wbdy--C"
},
{
"_key" : "C8",
"_id" : "components/C8",
"_rev" : "_go2Wbdy--D"
},
{
"_key" : "C9",
"_id" : "components/C9",
"_rev" : "_go2Wbdy--E"
},
{
"_key" : "C10",
"_id" : "components/C10",
"_rev" : "_go2Wbd2---"
}
]
[
{
"_key" : "73890",
"_id" : "connections/73890",
"_from" : "components/A1",
"_to" : "components/A2",
"_rev" : "_go2Wbd2--_"
},
{
"_key" : "73892",
"_id" : "connections/73892",
"_from" : "components/A2",
"_to" : "components/A3",
"_rev" : "_go2Wbd2--A"
},
{
"_key" : "73894",
"_id" : "connections/73894",
"_from" : "components/A3",
"_to" : "components/A4",
"_rev" : "_go2Wbd2--B"
},
{
"_key" : "73896",
"_id" : "connections/73896",
"_from" : "components/A4",
"_to" : "components/A1",
"_rev" : "_go2Wbd2--C"
},
{
"_key" : "73898",
"_id" : "connections/73898",
"_from" : "components/B1",
"_to" : "components/B3",
"_rev" : "_go2Wbd2--D"
},
{
"_key" : "73900",
"_id" : "connections/73900",
"_from" : "components/B2",
"_to" : "components/B4",
"_rev" : "_go2Wbd6---"
},
{
"_key" : "73902",
"_id" : "connections/73902",
"_from" : "components/B3",
"_to" : "components/B6",
"_rev" : "_go2Wbd6--_"
},
{
"_key" : "73904",
"_id" : "connections/73904",
"_from" : "components/B4",
"_to" : "components/B3",
"_rev" : "_go2Wbd6--A"
},
{
"_key" : "73906",
"_id" : "connections/73906",
"_from" : "components/B4",
"_to" : "components/B5",
"_rev" : "_go2Wbd6--B"
},
{
"_key" : "73908",
"_id" : "connections/73908",
"_from" : "components/B6",
"_to" : "components/B7",
"_rev" : "_go2Wbd6--C"
},
{
"_key" : "73910",
"_id" : "connections/73910",
"_from" : "components/B7",
"_to" : "components/B8",
"_rev" : "_go2Wbd6--D"
},
{
"_key" : "73912",
"_id" : "connections/73912",
"_from" : "components/B7",
"_to" : "components/B9",
"_rev" : "_go2Wbe----"
},
{
"_key" : "73914",
"_id" : "connections/73914",
"_from" : "components/B7",
"_to" : "components/B10",
"_rev" : "_go2Wbe---_"
},
{
"_key" : "73916",
"_id" : "connections/73916",
"_from" : "components/B7",
"_to" : "components/B19",
"_rev" : "_go2WbeC---"
},
{
"_key" : "73918",
"_id" : "connections/73918",
"_from" : "components/B11",
"_to" : "components/B10",
"_rev" : "_go2WbeG---"
},
{
"_key" : "73920",
"_id" : "connections/73920",
"_from" : "components/B12",
"_to" : "components/B11",
"_rev" : "_go2WbeG--_"
},
{
"_key" : "73922",
"_id" : "connections/73922",
"_from" : "components/B13",
"_to" : "components/B12",
"_rev" : "_go2WbeG--A"
},
{
"_key" : "73924",
"_id" : "connections/73924",
"_from" : "components/B13",
"_to" : "components/B20",
"_rev" : "_go2WbeG--B"
},
{
"_key" : "73926",
"_id" : "connections/73926",
"_from" : "components/B14",
"_to" : "components/B13",
"_rev" : "_go2WbeG--C"
},
{
"_key" : "73928",
"_id" : "connections/73928",
"_from" : "components/B15",
"_to" : "components/B14",
"_rev" : "_go2WbeK---"
},
{
"_key" : "73930",
"_id" : "connections/73930",
"_from" : "components/B15",
"_to" : "components/B16",
"_rev" : "_go2WbeK--_"
},
{
"_key" : "73932",
"_id" : "connections/73932",
"_from" : "components/B17",
"_to" : "components/B15",
"_rev" : "_go2WbeK--A"
},
{
"_key" : "73934",
"_id" : "connections/73934",
"_from" : "components/B17",
"_to" : "components/B18",
"_rev" : "_go2WbeK--B"
},
{
"_key" : "73936",
"_id" : "connections/73936",
"_from" : "components/B19",
"_to" : "components/B17",
"_rev" : "_go2WbeK--C"
},
{
"_key" : "73938",
"_id" : "connections/73938",
"_from" : "components/B20",
"_to" : "components/B21",
"_rev" : "_go2WbeO---"
},
{
"_key" : "73940",
"_id" : "connections/73940",
"_from" : "components/B20",
"_to" : "components/B22",
"_rev" : "_go2WbeO--_"
},
{
"_key" : "73942",
"_id" : "connections/73942",
"_from" : "components/C1",
"_to" : "components/C2",
"_rev" : "_go2WbeO--A"
},
{
"_key" : "73944",
"_id" : "connections/73944",
"_from" : "components/C2",
"_to" : "components/C3",
"_rev" : "_go2WbeO--B"
},
{
"_key" : "73946",
"_id" : "connections/73946",
"_from" : "components/C3",
"_to" : "components/C4",
"_rev" : "_go2WbeO--C"
},
{
"_key" : "73948",
"_id" : "connections/73948",
"_from" : "components/C4",
"_to" : "components/C5",
"_rev" : "_go2WbeS---"
},
{
"_key" : "73950",
"_id" : "connections/73950",
"_from" : "components/C4",
"_to" : "components/C7",
"_rev" : "_go2WbeS--_"
},
{
"_key" : "73952",
"_id" : "connections/73952",
"_from" : "components/C5",
"_to" : "components/C6",
"_rev" : "_go2WbeS--A"
},
{
"_key" : "73954",
"_id" : "connections/73954",
"_from" : "components/C5",
"_to" : "components/C7",
"_rev" : "_go2WbeS--B"
},
{
"_key" : "73956",
"_id" : "connections/73956",
"_from" : "components/C7",
"_to" : "components/C8",
"_rev" : "_go2WbeS--C"
},
{
"_key" : "73958",
"_id" : "connections/73958",
"_from" : "components/C8",
"_to" : "components/C9",
"_rev" : "_go2WbeS--D"
},
{
"_key" : "73960",
"_id" : "connections/73960",
"_from" : "components/C8",
"_to" : "components/C10",
"_rev" : "_go2WbeS--E"
}
]
Higher volume graph examples
All of the above examples are rather small to make them easy to comprehend and demonstrate how graphs work in ArangoDB. However, there are several, freely available datasets on the web that are a lot bigger.
You can find a collection of datasets with import scripts on GitHub.
Another huge graph is the Pokec social network from Slovakia. See this blogpost for details and an import script.