Example graphs
How to use the example graphs built into ArangoDB
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" : "_ir4cnUe---",
"name" : "Alice"
},
{
"_key" : "bob",
"_id" : "persons/bob",
"_rev" : "_ir4cnUe--_",
"name" : "Bob"
},
{
"_key" : "charlie",
"_id" : "persons/charlie",
"_rev" : "_ir4cnUe--A",
"name" : "Charlie"
},
{
"_key" : "dave",
"_id" : "persons/dave",
"_rev" : "_ir4cnUe--B",
"name" : "Dave"
},
{
"_key" : "eve",
"_id" : "persons/eve",
"_rev" : "_ir4cnUe--C",
"name" : "Eve"
}
]
[
{
"_key" : "73380",
"_id" : "knows/73380",
"_from" : "persons/alice",
"_to" : "persons/bob",
"_rev" : "_ir4cnUi---",
"vertex" : "alice"
},
{
"_key" : "73382",
"_id" : "knows/73382",
"_from" : "persons/bob",
"_to" : "persons/charlie",
"_rev" : "_ir4cnUi--_",
"vertex" : "bob"
},
{
"_key" : "73384",
"_id" : "knows/73384",
"_from" : "persons/bob",
"_to" : "persons/dave",
"_rev" : "_ir4cnUi--A",
"vertex" : "bob"
},
{
"_key" : "73386",
"_id" : "knows/73386",
"_from" : "persons/eve",
"_to" : "persons/alice",
"_rev" : "_ir4cnUi--B",
"vertex" : "eve"
},
{
"_key" : "73388",
"_id" : "knows/73388",
"_from" : "persons/eve",
"_to" : "persons/bob",
"_rev" : "_ir4cnUm---",
"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" : "_ir4cnVS---",
"label" : "1"
},
{
"_key" : "B",
"_id" : "circles/B",
"_rev" : "_ir4cnVS--_",
"label" : "2"
},
{
"_key" : "C",
"_id" : "circles/C",
"_rev" : "_ir4cnVS--A",
"label" : "3"
},
{
"_key" : "D",
"_id" : "circles/D",
"_rev" : "_ir4cnVS--B",
"label" : "4"
},
{
"_key" : "E",
"_id" : "circles/E",
"_rev" : "_ir4cnVS--C",
"label" : "5"
},
{
"_key" : "F",
"_id" : "circles/F",
"_rev" : "_ir4cnVW---",
"label" : "6"
},
{
"_key" : "G",
"_id" : "circles/G",
"_rev" : "_ir4cnVW--_",
"label" : "7"
},
{
"_key" : "H",
"_id" : "circles/H",
"_rev" : "_ir4cnVW--A",
"label" : "8"
},
{
"_key" : "I",
"_id" : "circles/I",
"_rev" : "_ir4cnVW--B",
"label" : "9"
},
{
"_key" : "J",
"_id" : "circles/J",
"_rev" : "_ir4cnVW--C",
"label" : "10"
},
{
"_key" : "K",
"_id" : "circles/K",
"_rev" : "_ir4cnVW--D",
"label" : "11"
}
]
[
{
"_key" : "73446",
"_id" : "edges/73446",
"_from" : "circles/A",
"_to" : "circles/B",
"_rev" : "_ir4cnVa---",
"theFalse" : false,
"theTruth" : true,
"label" : "left_bar"
},
{
"_key" : "73448",
"_id" : "edges/73448",
"_from" : "circles/B",
"_to" : "circles/C",
"_rev" : "_ir4cnVa--_",
"theFalse" : false,
"theTruth" : true,
"label" : "left_blarg"
},
{
"_key" : "73450",
"_id" : "edges/73450",
"_from" : "circles/C",
"_to" : "circles/D",
"_rev" : "_ir4cnVa--A",
"theFalse" : false,
"theTruth" : true,
"label" : "left_blorg"
},
{
"_key" : "73452",
"_id" : "edges/73452",
"_from" : "circles/B",
"_to" : "circles/E",
"_rev" : "_ir4cnVa--B",
"theFalse" : false,
"theTruth" : true,
"label" : "left_blub"
},
{
"_key" : "73454",
"_id" : "edges/73454",
"_from" : "circles/E",
"_to" : "circles/F",
"_rev" : "_ir4cnVa--C",
"theFalse" : false,
"theTruth" : true,
"label" : "left_schubi"
},
{
"_key" : "73456",
"_id" : "edges/73456",
"_from" : "circles/A",
"_to" : "circles/G",
"_rev" : "_ir4cnVe---",
"theFalse" : false,
"theTruth" : true,
"label" : "right_foo"
},
{
"_key" : "73458",
"_id" : "edges/73458",
"_from" : "circles/G",
"_to" : "circles/H",
"_rev" : "_ir4cnVe--_",
"theFalse" : false,
"theTruth" : true,
"label" : "right_blob"
},
{
"_key" : "73460",
"_id" : "edges/73460",
"_from" : "circles/H",
"_to" : "circles/I",
"_rev" : "_ir4cnVe--A",
"theFalse" : false,
"theTruth" : true,
"label" : "right_blub"
},
{
"_key" : "73462",
"_id" : "edges/73462",
"_from" : "circles/G",
"_to" : "circles/J",
"_rev" : "_ir4cnVe--B",
"theFalse" : false,
"theTruth" : true,
"label" : "right_zip"
},
{
"_key" : "73464",
"_id" : "edges/73464",
"_from" : "circles/J",
"_to" : "circles/K",
"_rev" : "_ir4cnVi---",
"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" : "_ir4cnXO---",
"label" : "Inverness"
},
{
"_key" : "Aberdeen",
"_id" : "places/Aberdeen",
"_rev" : "_ir4cnXO--_",
"label" : "Aberdeen"
},
{
"_key" : "Leuchars",
"_id" : "places/Leuchars",
"_rev" : "_ir4cnXO--A",
"label" : "Leuchars"
},
{
"_key" : "StAndrews",
"_id" : "places/StAndrews",
"_rev" : "_ir4cnXO--B",
"label" : "StAndrews"
},
{
"_key" : "Edinburgh",
"_id" : "places/Edinburgh",
"_rev" : "_ir4cnXS---",
"label" : "Edinburgh"
},
{
"_key" : "Glasgow",
"_id" : "places/Glasgow",
"_rev" : "_ir4cnXS--_",
"label" : "Glasgow"
},
{
"_key" : "York",
"_id" : "places/York",
"_rev" : "_ir4cnXS--A",
"label" : "York"
},
{
"_key" : "Carlisle",
"_id" : "places/Carlisle",
"_rev" : "_ir4cnXS--B",
"label" : "Carlisle"
},
{
"_key" : "Birmingham",
"_id" : "places/Birmingham",
"_rev" : "_ir4cnXS--C",
"label" : "Birmingham"
},
{
"_key" : "London",
"_id" : "places/London",
"_rev" : "_ir4cnXS--D",
"label" : "London"
},
{
"_key" : "Brussels",
"_id" : "places/Brussels",
"_rev" : "_ir4cnXW---",
"label" : "Brussels"
},
{
"_key" : "Cologne",
"_id" : "places/Cologne",
"_rev" : "_ir4cnXW--_",
"label" : "Cologne"
},
{
"_key" : "Toronto",
"_id" : "places/Toronto",
"_rev" : "_ir4cnXW--A",
"label" : "Toronto"
},
{
"_key" : "Winnipeg",
"_id" : "places/Winnipeg",
"_rev" : "_ir4cnXW--B",
"label" : "Winnipeg"
},
{
"_key" : "Saskatoon",
"_id" : "places/Saskatoon",
"_rev" : "_ir4cnXW--C",
"label" : "Saskatoon"
},
{
"_key" : "Edmonton",
"_id" : "places/Edmonton",
"_rev" : "_ir4cnXa---",
"label" : "Edmonton"
},
{
"_key" : "Jasper",
"_id" : "places/Jasper",
"_rev" : "_ir4cnXa--_",
"label" : "Jasper"
},
{
"_key" : "Vancouver",
"_id" : "places/Vancouver",
"_rev" : "_ir4cnXa--A",
"label" : "Vancouver"
}
]
[
{
"_key" : "73529",
"_id" : "connections/73529",
"_from" : "places/Inverness",
"_to" : "places/Aberdeen",
"_rev" : "_ir4cnXa--B",
"travelTime" : 3
},
{
"_key" : "73531",
"_id" : "connections/73531",
"_from" : "places/Aberdeen",
"_to" : "places/Inverness",
"_rev" : "_ir4cnXe---",
"travelTime" : 2.5
},
{
"_key" : "73533",
"_id" : "connections/73533",
"_from" : "places/Aberdeen",
"_to" : "places/Leuchars",
"_rev" : "_ir4cnXe--_",
"travelTime" : 1.5
},
{
"_key" : "73535",
"_id" : "connections/73535",
"_from" : "places/Leuchars",
"_to" : "places/Aberdeen",
"_rev" : "_ir4cnXe--A",
"travelTime" : 1
},
{
"_key" : "73537",
"_id" : "connections/73537",
"_from" : "places/Leuchars",
"_to" : "places/Edinburgh",
"_rev" : "_ir4cnXe--B",
"travelTime" : 1.5
},
{
"_key" : "73539",
"_id" : "connections/73539",
"_from" : "places/Edinburgh",
"_to" : "places/Leuchars",
"_rev" : "_ir4cnXe--C",
"travelTime" : 3
},
{
"_key" : "73541",
"_id" : "connections/73541",
"_from" : "places/Edinburgh",
"_to" : "places/Glasgow",
"_rev" : "_ir4cnXe--D",
"travelTime" : 1
},
{
"_key" : "73543",
"_id" : "connections/73543",
"_from" : "places/Glasgow",
"_to" : "places/Edinburgh",
"_rev" : "_ir4cnXi---",
"travelTime" : 1
},
{
"_key" : "73545",
"_id" : "connections/73545",
"_from" : "places/Edinburgh",
"_to" : "places/York",
"_rev" : "_ir4cnXi--_",
"travelTime" : 3.5
},
{
"_key" : "73547",
"_id" : "connections/73547",
"_from" : "places/York",
"_to" : "places/Edinburgh",
"_rev" : "_ir4cnXi--A",
"travelTime" : 4
},
{
"_key" : "73549",
"_id" : "connections/73549",
"_from" : "places/Glasgow",
"_to" : "places/Carlisle",
"_rev" : "_ir4cnXi--B",
"travelTime" : 1
},
{
"_key" : "73551",
"_id" : "connections/73551",
"_from" : "places/Carlisle",
"_to" : "places/Glasgow",
"_rev" : "_ir4cnXm---",
"travelTime" : 1
},
{
"_key" : "73553",
"_id" : "connections/73553",
"_from" : "places/Carlisle",
"_to" : "places/York",
"_rev" : "_ir4cnXm--_",
"travelTime" : 2.5
},
{
"_key" : "73555",
"_id" : "connections/73555",
"_from" : "places/York",
"_to" : "places/Carlisle",
"_rev" : "_ir4cnXm--A",
"travelTime" : 3.5
},
{
"_key" : "73557",
"_id" : "connections/73557",
"_from" : "places/Carlisle",
"_to" : "places/Birmingham",
"_rev" : "_ir4cnXm--B",
"travelTime" : 2
},
{
"_key" : "73559",
"_id" : "connections/73559",
"_from" : "places/Birmingham",
"_to" : "places/Carlisle",
"_rev" : "_ir4cnXm--C",
"travelTime" : 1
},
{
"_key" : "73561",
"_id" : "connections/73561",
"_from" : "places/Birmingham",
"_to" : "places/London",
"_rev" : "_ir4cnXq---",
"travelTime" : 1.5
},
{
"_key" : "73563",
"_id" : "connections/73563",
"_from" : "places/London",
"_to" : "places/Birmingham",
"_rev" : "_ir4cnXq--_",
"travelTime" : 2.5
},
{
"_key" : "73565",
"_id" : "connections/73565",
"_from" : "places/Leuchars",
"_to" : "places/StAndrews",
"_rev" : "_ir4cnXq--A",
"travelTime" : 0.2
},
{
"_key" : "73567",
"_id" : "connections/73567",
"_from" : "places/StAndrews",
"_to" : "places/Leuchars",
"_rev" : "_ir4cnXq--B",
"travelTime" : 0.2
},
{
"_key" : "73569",
"_id" : "connections/73569",
"_from" : "places/York",
"_to" : "places/London",
"_rev" : "_ir4cnXq--C",
"travelTime" : 1.8
},
{
"_key" : "73571",
"_id" : "connections/73571",
"_from" : "places/London",
"_to" : "places/York",
"_rev" : "_ir4cnXu---",
"travelTime" : 2
},
{
"_key" : "73573",
"_id" : "connections/73573",
"_from" : "places/London",
"_to" : "places/Brussels",
"_rev" : "_ir4cnXu--_",
"travelTime" : 2.5
},
{
"_key" : "73575",
"_id" : "connections/73575",
"_from" : "places/Brussels",
"_to" : "places/London",
"_rev" : "_ir4cnXu--A",
"travelTime" : 3.5
},
{
"_key" : "73577",
"_id" : "connections/73577",
"_from" : "places/Brussels",
"_to" : "places/Cologne",
"_rev" : "_ir4cnXu--B",
"travelTime" : 2
},
{
"_key" : "73579",
"_id" : "connections/73579",
"_from" : "places/Cologne",
"_to" : "places/Brussels",
"_rev" : "_ir4cnXy---",
"travelTime" : 1.5
},
{
"_key" : "73581",
"_id" : "connections/73581",
"_from" : "places/Toronto",
"_to" : "places/Winnipeg",
"_rev" : "_ir4cnXy--_",
"travelTime" : 36
},
{
"_key" : "73583",
"_id" : "connections/73583",
"_from" : "places/Winnipeg",
"_to" : "places/Toronto",
"_rev" : "_ir4cnXy--A",
"travelTime" : 35
},
{
"_key" : "73585",
"_id" : "connections/73585",
"_from" : "places/Winnipeg",
"_to" : "places/Saskatoon",
"_rev" : "_ir4cnXy--B",
"travelTime" : 12
},
{
"_key" : "73587",
"_id" : "connections/73587",
"_from" : "places/Saskatoon",
"_to" : "places/Winnipeg",
"_rev" : "_ir4cnXy--C",
"travelTime" : 5
},
{
"_key" : "73589",
"_id" : "connections/73589",
"_from" : "places/Saskatoon",
"_to" : "places/Edmonton",
"_rev" : "_ir4cnX2---",
"travelTime" : 12
},
{
"_key" : "73591",
"_id" : "connections/73591",
"_from" : "places/Edmonton",
"_to" : "places/Saskatoon",
"_rev" : "_ir4cnX2--_",
"travelTime" : 17
},
{
"_key" : "73593",
"_id" : "connections/73593",
"_from" : "places/Edmonton",
"_to" : "places/Jasper",
"_rev" : "_ir4cnX2--A",
"travelTime" : 6
},
{
"_key" : "73595",
"_id" : "connections/73595",
"_from" : "places/Jasper",
"_to" : "places/Edmonton",
"_rev" : "_ir4cnX2--B",
"travelTime" : 5
},
{
"_key" : "73597",
"_id" : "connections/73597",
"_from" : "places/Jasper",
"_to" : "places/Vancouver",
"_rev" : "_ir4cnX2--C",
"travelTime" : 12
},
{
"_key" : "73599",
"_id" : "connections/73599",
"_from" : "places/Vancouver",
"_to" : "places/Jasper",
"_rev" : "_ir4cnX6---",
"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" : "_ir4cnZO---"
},
{
"_key" : "B",
"_id" : "mps_verts/B",
"_rev" : "_ir4cnZO--_"
},
{
"_key" : "C",
"_id" : "mps_verts/C",
"_rev" : "_ir4cnZS---"
},
{
"_key" : "D",
"_id" : "mps_verts/D",
"_rev" : "_ir4cnZS--_"
},
{
"_key" : "E",
"_id" : "mps_verts/E",
"_rev" : "_ir4cnZS--A"
},
{
"_key" : "F",
"_id" : "mps_verts/F",
"_rev" : "_ir4cnZS--B"
}
]
[
{
"_key" : "73652",
"_id" : "mps_edges/73652",
"_from" : "mps_verts/A",
"_to" : "mps_verts/B",
"_rev" : "_ir4cnZS--C",
"vertex" : "A"
},
{
"_key" : "73654",
"_id" : "mps_edges/73654",
"_from" : "mps_verts/A",
"_to" : "mps_verts/E",
"_rev" : "_ir4cnZW---",
"vertex" : "A"
},
{
"_key" : "73656",
"_id" : "mps_edges/73656",
"_from" : "mps_verts/A",
"_to" : "mps_verts/D",
"_rev" : "_ir4cnZa---",
"vertex" : "A"
},
{
"_key" : "73658",
"_id" : "mps_edges/73658",
"_from" : "mps_verts/B",
"_to" : "mps_verts/C",
"_rev" : "_ir4cnZa--_",
"vertex" : "B"
},
{
"_key" : "73660",
"_id" : "mps_edges/73660",
"_from" : "mps_verts/D",
"_to" : "mps_verts/C",
"_rev" : "_ir4cnZa--A",
"vertex" : "D"
},
{
"_key" : "73662",
"_id" : "mps_edges/73662",
"_from" : "mps_verts/E",
"_to" : "mps_verts/F",
"_rev" : "_ir4cnZe---",
"vertex" : "E"
},
{
"_key" : "73664",
"_id" : "mps_edges/73664",
"_from" : "mps_verts/F",
"_to" : "mps_verts/C",
"_rev" : "_ir4cnZe--_",
"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" : "_ir4cnaS---",
"name" : "World",
"type" : "root"
},
{
"_key" : "continent-africa",
"_id" : "worldVertices/continent-africa",
"_rev" : "_ir4cnaS--_",
"name" : "Africa",
"type" : "continent"
},
{
"_key" : "continent-asia",
"_id" : "worldVertices/continent-asia",
"_rev" : "_ir4cnaS--A",
"name" : "Asia",
"type" : "continent"
},
{
"_key" : "continent-australia",
"_id" : "worldVertices/continent-australia",
"_rev" : "_ir4cnaS--B",
"name" : "Australia",
"type" : "continent"
},
{
"_key" : "continent-europe",
"_id" : "worldVertices/continent-europe",
"_rev" : "_ir4cnaW---",
"name" : "Europe",
"type" : "continent"
},
{
"_key" : "continent-north-america",
"_id" : "worldVertices/continent-north-america",
"_rev" : "_ir4cnaW--_",
"name" : "North America",
"type" : "continent"
},
{
"_key" : "continent-south-america",
"_id" : "worldVertices/continent-south-america",
"_rev" : "_ir4cnaW--A",
"name" : "South America",
"type" : "continent"
},
{
"_key" : "country-afghanistan",
"_id" : "worldVertices/country-afghanistan",
"_rev" : "_ir4cnaW--B",
"name" : "Afghanistan",
"type" : "country",
"code" : "AFG"
},
{
"_key" : "country-albania",
"_id" : "worldVertices/country-albania",
"_rev" : "_ir4cnaa---",
"name" : "Albania",
"type" : "country",
"code" : "ALB"
},
{
"_key" : "country-algeria",
"_id" : "worldVertices/country-algeria",
"_rev" : "_ir4cnaa--_",
"name" : "Algeria",
"type" : "country",
"code" : "DZA"
},
{
"_key" : "country-andorra",
"_id" : "worldVertices/country-andorra",
"_rev" : "_ir4cnai---",
"name" : "Andorra",
"type" : "country",
"code" : "AND"
},
{
"_key" : "country-angola",
"_id" : "worldVertices/country-angola",
"_rev" : "_ir4cnai--_",
"name" : "Angola",
"type" : "country",
"code" : "AGO"
},
{
"_key" : "country-antigua-and-barbuda",
"_id" : "worldVertices/country-antigua-and-barbuda",
"_rev" : "_ir4cnai--A",
"name" : "Antigua and Barbuda",
"type" : "country",
"code" : "ATG"
},
{
"_key" : "country-argentina",
"_id" : "worldVertices/country-argentina",
"_rev" : "_ir4cnam---",
"name" : "Argentina",
"type" : "country",
"code" : "ARG"
},
{
"_key" : "country-australia",
"_id" : "worldVertices/country-australia",
"_rev" : "_ir4cnam--_",
"name" : "Australia",
"type" : "country",
"code" : "AUS"
},
{
"_key" : "country-austria",
"_id" : "worldVertices/country-austria",
"_rev" : "_ir4cnam--A",
"name" : "Austria",
"type" : "country",
"code" : "AUT"
},
{
"_key" : "country-bahamas",
"_id" : "worldVertices/country-bahamas",
"_rev" : "_ir4cnam--B",
"name" : "Bahamas",
"type" : "country",
"code" : "BHS"
},
{
"_key" : "country-bahrain",
"_id" : "worldVertices/country-bahrain",
"_rev" : "_ir4cnam--C",
"name" : "Bahrain",
"type" : "country",
"code" : "BHR"
},
{
"_key" : "country-bangladesh",
"_id" : "worldVertices/country-bangladesh",
"_rev" : "_ir4cnaq---",
"name" : "Bangladesh",
"type" : "country",
"code" : "BGD"
},
{
"_key" : "country-barbados",
"_id" : "worldVertices/country-barbados",
"_rev" : "_ir4cnaq--_",
"name" : "Barbados",
"type" : "country",
"code" : "BRB"
},
{
"_key" : "country-belgium",
"_id" : "worldVertices/country-belgium",
"_rev" : "_ir4cnaq--A",
"name" : "Belgium",
"type" : "country",
"code" : "BEL"
},
{
"_key" : "country-bhutan",
"_id" : "worldVertices/country-bhutan",
"_rev" : "_ir4cnaq--B",
"name" : "Bhutan",
"type" : "country",
"code" : "BTN"
},
{
"_key" : "country-bolivia",
"_id" : "worldVertices/country-bolivia",
"_rev" : "_ir4cnaq--C",
"name" : "Bolivia",
"type" : "country",
"code" : "BOL"
},
{
"_key" : "country-bosnia-and-herzegovina",
"_id" : "worldVertices/country-bosnia-and-herzegovina",
"_rev" : "_ir4cnaq--D",
"name" : "Bosnia and Herzegovina",
"type" : "country",
"code" : "BIH"
},
{
"_key" : "country-botswana",
"_id" : "worldVertices/country-botswana",
"_rev" : "_ir4cnau---",
"name" : "Botswana",
"type" : "country",
"code" : "BWA"
},
{
"_key" : "country-brazil",
"_id" : "worldVertices/country-brazil",
"_rev" : "_ir4cnau--_",
"name" : "Brazil",
"type" : "country",
"code" : "BRA"
},
{
"_key" : "country-brunei",
"_id" : "worldVertices/country-brunei",
"_rev" : "_ir4cnau--A",
"name" : "Brunei",
"type" : "country",
"code" : "BRN"
},
{
"_key" : "country-bulgaria",
"_id" : "worldVertices/country-bulgaria",
"_rev" : "_ir4cnau--B",
"name" : "Bulgaria",
"type" : "country",
"code" : "BGR"
},
{
"_key" : "country-burkina-faso",
"_id" : "worldVertices/country-burkina-faso",
"_rev" : "_ir4cnay---",
"name" : "Burkina Faso",
"type" : "country",
"code" : "BFA"
},
{
"_key" : "country-burundi",
"_id" : "worldVertices/country-burundi",
"_rev" : "_ir4cnay--_",
"name" : "Burundi",
"type" : "country",
"code" : "BDI"
},
{
"_key" : "country-cambodia",
"_id" : "worldVertices/country-cambodia",
"_rev" : "_ir4cnay--A",
"name" : "Cambodia",
"type" : "country",
"code" : "KHM"
},
{
"_key" : "country-cameroon",
"_id" : "worldVertices/country-cameroon",
"_rev" : "_ir4cnay--B",
"name" : "Cameroon",
"type" : "country",
"code" : "CMR"
},
{
"_key" : "country-canada",
"_id" : "worldVertices/country-canada",
"_rev" : "_ir4cnay--C",
"name" : "Canada",
"type" : "country",
"code" : "CAN"
},
{
"_key" : "country-chad",
"_id" : "worldVertices/country-chad",
"_rev" : "_ir4cnay--D",
"name" : "Chad",
"type" : "country",
"code" : "TCD"
},
{
"_key" : "country-chile",
"_id" : "worldVertices/country-chile",
"_rev" : "_ir4cna2---",
"name" : "Chile",
"type" : "country",
"code" : "CHL"
},
{
"_key" : "country-colombia",
"_id" : "worldVertices/country-colombia",
"_rev" : "_ir4cna2--_",
"name" : "Colombia",
"type" : "country",
"code" : "COL"
},
{
"_key" : "country-cote-d-ivoire",
"_id" : "worldVertices/country-cote-d-ivoire",
"_rev" : "_ir4cna2--A",
"name" : "Cote d'Ivoire",
"type" : "country",
"code" : "CIV"
},
{
"_key" : "country-croatia",
"_id" : "worldVertices/country-croatia",
"_rev" : "_ir4cna2--B",
"name" : "Croatia",
"type" : "country",
"code" : "HRV"
},
{
"_key" : "country-czech-republic",
"_id" : "worldVertices/country-czech-republic",
"_rev" : "_ir4cna2--C",
"name" : "Czech Republic",
"type" : "country",
"code" : "CZE"
},
{
"_key" : "country-denmark",
"_id" : "worldVertices/country-denmark",
"_rev" : "_ir4cna2--D",
"name" : "Denmark",
"type" : "country",
"code" : "DNK"
},
{
"_key" : "country-ecuador",
"_id" : "worldVertices/country-ecuador",
"_rev" : "_ir4cna6---",
"name" : "Ecuador",
"type" : "country",
"code" : "ECU"
},
{
"_key" : "country-egypt",
"_id" : "worldVertices/country-egypt",
"_rev" : "_ir4cna6--_",
"name" : "Egypt",
"type" : "country",
"code" : "EGY"
},
{
"_key" : "country-eritrea",
"_id" : "worldVertices/country-eritrea",
"_rev" : "_ir4cna6--A",
"name" : "Eritrea",
"type" : "country",
"code" : "ERI"
},
{
"_key" : "country-finland",
"_id" : "worldVertices/country-finland",
"_rev" : "_ir4cna6--B",
"name" : "Finland",
"type" : "country",
"code" : "FIN"
},
{
"_key" : "country-france",
"_id" : "worldVertices/country-france",
"_rev" : "_ir4cna6--C",
"name" : "France",
"type" : "country",
"code" : "FRA"
},
{
"_key" : "country-germany",
"_id" : "worldVertices/country-germany",
"_rev" : "_ir4cnb----",
"name" : "Germany",
"type" : "country",
"code" : "DEU"
},
{
"_key" : "country-people-s-republic-of-china",
"_id" : "worldVertices/country-people-s-republic-of-china",
"_rev" : "_ir4cnb---_",
"name" : "People's Republic of China",
"type" : "country",
"code" : "CHN"
},
{
"_key" : "capital-algiers",
"_id" : "worldVertices/capital-algiers",
"_rev" : "_ir4cnb---A",
"name" : "Algiers",
"type" : "capital"
},
{
"_key" : "capital-andorra-la-vella",
"_id" : "worldVertices/capital-andorra-la-vella",
"_rev" : "_ir4cnb---B",
"name" : "Andorra la Vella",
"type" : "capital"
},
{
"_key" : "capital-asmara",
"_id" : "worldVertices/capital-asmara",
"_rev" : "_ir4cnb---C",
"name" : "Asmara",
"type" : "capital"
},
{
"_key" : "capital-bandar-seri-begawan",
"_id" : "worldVertices/capital-bandar-seri-begawan",
"_rev" : "_ir4cnb---D",
"name" : "Bandar Seri Begawan",
"type" : "capital"
},
{
"_key" : "capital-beijing",
"_id" : "worldVertices/capital-beijing",
"_rev" : "_ir4cnb---E",
"name" : "Beijing",
"type" : "capital"
},
{
"_key" : "capital-berlin",
"_id" : "worldVertices/capital-berlin",
"_rev" : "_ir4cnbC---",
"name" : "Berlin",
"type" : "capital"
},
{
"_key" : "capital-bogota",
"_id" : "worldVertices/capital-bogota",
"_rev" : "_ir4cnbC--_",
"name" : "Bogota",
"type" : "capital"
},
{
"_key" : "capital-brasilia",
"_id" : "worldVertices/capital-brasilia",
"_rev" : "_ir4cnbC--A",
"name" : "Brasilia",
"type" : "capital"
},
{
"_key" : "capital-bridgetown",
"_id" : "worldVertices/capital-bridgetown",
"_rev" : "_ir4cnbC--B",
"name" : "Bridgetown",
"type" : "capital"
},
{
"_key" : "capital-brussels",
"_id" : "worldVertices/capital-brussels",
"_rev" : "_ir4cnbC--C",
"name" : "Brussels",
"type" : "capital"
},
{
"_key" : "capital-buenos-aires",
"_id" : "worldVertices/capital-buenos-aires",
"_rev" : "_ir4cnbC--D",
"name" : "Buenos Aires",
"type" : "capital"
},
{
"_key" : "capital-bujumbura",
"_id" : "worldVertices/capital-bujumbura",
"_rev" : "_ir4cnbG---",
"name" : "Bujumbura",
"type" : "capital"
},
{
"_key" : "capital-cairo",
"_id" : "worldVertices/capital-cairo",
"_rev" : "_ir4cnbG--_",
"name" : "Cairo",
"type" : "capital"
},
{
"_key" : "capital-canberra",
"_id" : "worldVertices/capital-canberra",
"_rev" : "_ir4cnbG--A",
"name" : "Canberra",
"type" : "capital"
},
{
"_key" : "capital-copenhagen",
"_id" : "worldVertices/capital-copenhagen",
"_rev" : "_ir4cnbG--B",
"name" : "Copenhagen",
"type" : "capital"
},
{
"_key" : "capital-dhaka",
"_id" : "worldVertices/capital-dhaka",
"_rev" : "_ir4cnbG--C",
"name" : "Dhaka",
"type" : "capital"
},
{
"_key" : "capital-gaborone",
"_id" : "worldVertices/capital-gaborone",
"_rev" : "_ir4cnbG--D",
"name" : "Gaborone",
"type" : "capital"
},
{
"_key" : "capital-helsinki",
"_id" : "worldVertices/capital-helsinki",
"_rev" : "_ir4cnbK---",
"name" : "Helsinki",
"type" : "capital"
},
{
"_key" : "capital-kabul",
"_id" : "worldVertices/capital-kabul",
"_rev" : "_ir4cnbK--_",
"name" : "Kabul",
"type" : "capital"
},
{
"_key" : "capital-la-paz",
"_id" : "worldVertices/capital-la-paz",
"_rev" : "_ir4cnbK--A",
"name" : "La Paz",
"type" : "capital"
},
{
"_key" : "capital-luanda",
"_id" : "worldVertices/capital-luanda",
"_rev" : "_ir4cnbK--B",
"name" : "Luanda",
"type" : "capital"
},
{
"_key" : "capital-manama",
"_id" : "worldVertices/capital-manama",
"_rev" : "_ir4cnbK--C",
"name" : "Manama",
"type" : "capital"
},
{
"_key" : "capital-nassau",
"_id" : "worldVertices/capital-nassau",
"_rev" : "_ir4cnbK--D",
"name" : "Nassau",
"type" : "capital"
},
{
"_key" : "capital-n-djamena",
"_id" : "worldVertices/capital-n-djamena",
"_rev" : "_ir4cnbO---",
"name" : "N'Djamena",
"type" : "capital"
},
{
"_key" : "capital-ottawa",
"_id" : "worldVertices/capital-ottawa",
"_rev" : "_ir4cnbO--_",
"name" : "Ottawa",
"type" : "capital"
},
{
"_key" : "capital-ouagadougou",
"_id" : "worldVertices/capital-ouagadougou",
"_rev" : "_ir4cnbO--A",
"name" : "Ouagadougou",
"type" : "capital"
},
{
"_key" : "capital-paris",
"_id" : "worldVertices/capital-paris",
"_rev" : "_ir4cnbO--B",
"name" : "Paris",
"type" : "capital"
},
{
"_key" : "capital-phnom-penh",
"_id" : "worldVertices/capital-phnom-penh",
"_rev" : "_ir4cnbO--C",
"name" : "Phnom Penh",
"type" : "capital"
},
{
"_key" : "capital-prague",
"_id" : "worldVertices/capital-prague",
"_rev" : "_ir4cnbS---",
"name" : "Prague",
"type" : "capital"
},
{
"_key" : "capital-quito",
"_id" : "worldVertices/capital-quito",
"_rev" : "_ir4cnbS--_",
"name" : "Quito",
"type" : "capital"
},
{
"_key" : "capital-saint-john-s",
"_id" : "worldVertices/capital-saint-john-s",
"_rev" : "_ir4cnbS--A",
"name" : "Saint John's",
"type" : "capital"
},
{
"_key" : "capital-santiago",
"_id" : "worldVertices/capital-santiago",
"_rev" : "_ir4cnbS--B",
"name" : "Santiago",
"type" : "capital"
},
{
"_key" : "capital-sarajevo",
"_id" : "worldVertices/capital-sarajevo",
"_rev" : "_ir4cnbS--C",
"name" : "Sarajevo",
"type" : "capital"
},
{
"_key" : "capital-sofia",
"_id" : "worldVertices/capital-sofia",
"_rev" : "_ir4cnbS--D",
"name" : "Sofia",
"type" : "capital"
},
{
"_key" : "capital-thimphu",
"_id" : "worldVertices/capital-thimphu",
"_rev" : "_ir4cnbW---",
"name" : "Thimphu",
"type" : "capital"
},
{
"_key" : "capital-tirana",
"_id" : "worldVertices/capital-tirana",
"_rev" : "_ir4cnbW--_",
"name" : "Tirana",
"type" : "capital"
},
{
"_key" : "capital-vienna",
"_id" : "worldVertices/capital-vienna",
"_rev" : "_ir4cnbW--A",
"name" : "Vienna",
"type" : "capital"
},
{
"_key" : "capital-yamoussoukro",
"_id" : "worldVertices/capital-yamoussoukro",
"_rev" : "_ir4cnbW--B",
"name" : "Yamoussoukro",
"type" : "capital"
},
{
"_key" : "capital-yaounde",
"_id" : "worldVertices/capital-yaounde",
"_rev" : "_ir4cnbW--C",
"name" : "Yaounde",
"type" : "capital"
},
{
"_key" : "capital-zagreb",
"_id" : "worldVertices/capital-zagreb",
"_rev" : "_ir4cnbW--D",
"name" : "Zagreb",
"type" : "capital"
}
]
[
{
"_key" : "73798",
"_id" : "worldEdges/73798",
"_from" : "worldVertices/continent-africa",
"_to" : "worldVertices/world",
"_rev" : "_ir4cnba---",
"type" : "is-in"
},
{
"_key" : "73800",
"_id" : "worldEdges/73800",
"_from" : "worldVertices/continent-asia",
"_to" : "worldVertices/world",
"_rev" : "_ir4cnba--_",
"type" : "is-in"
},
{
"_key" : "73802",
"_id" : "worldEdges/73802",
"_from" : "worldVertices/continent-australia",
"_to" : "worldVertices/world",
"_rev" : "_ir4cnba--A",
"type" : "is-in"
},
{
"_key" : "73804",
"_id" : "worldEdges/73804",
"_from" : "worldVertices/continent-europe",
"_to" : "worldVertices/world",
"_rev" : "_ir4cnba--B",
"type" : "is-in"
},
{
"_key" : "73806",
"_id" : "worldEdges/73806",
"_from" : "worldVertices/continent-north-america",
"_to" : "worldVertices/world",
"_rev" : "_ir4cnba--C",
"type" : "is-in"
},
{
"_key" : "73808",
"_id" : "worldEdges/73808",
"_from" : "worldVertices/continent-south-america",
"_to" : "worldVertices/world",
"_rev" : "_ir4cnbe---",
"type" : "is-in"
},
{
"_key" : "73810",
"_id" : "worldEdges/73810",
"_from" : "worldVertices/country-afghanistan",
"_to" : "worldVertices/continent-asia",
"_rev" : "_ir4cnbe--_",
"type" : "is-in"
},
{
"_key" : "73812",
"_id" : "worldEdges/73812",
"_from" : "worldVertices/country-albania",
"_to" : "worldVertices/continent-europe",
"_rev" : "_ir4cnbe--A",
"type" : "is-in"
},
{
"_key" : "73814",
"_id" : "worldEdges/73814",
"_from" : "worldVertices/country-algeria",
"_to" : "worldVertices/continent-africa",
"_rev" : "_ir4cnbe--B",
"type" : "is-in"
},
{
"_key" : "73816",
"_id" : "worldEdges/73816",
"_from" : "worldVertices/country-andorra",
"_to" : "worldVertices/continent-europe",
"_rev" : "_ir4cnbe--C",
"type" : "is-in"
},
{
"_key" : "73818",
"_id" : "worldEdges/73818",
"_from" : "worldVertices/country-angola",
"_to" : "worldVertices/continent-africa",
"_rev" : "_ir4cnbi---",
"type" : "is-in"
},
{
"_key" : "73820",
"_id" : "worldEdges/73820",
"_from" : "worldVertices/country-antigua-and-barbuda",
"_to" : "worldVertices/continent-north-america",
"_rev" : "_ir4cnbi--_",
"type" : "is-in"
},
{
"_key" : "73822",
"_id" : "worldEdges/73822",
"_from" : "worldVertices/country-argentina",
"_to" : "worldVertices/continent-south-america",
"_rev" : "_ir4cnbi--A",
"type" : "is-in"
},
{
"_key" : "73824",
"_id" : "worldEdges/73824",
"_from" : "worldVertices/country-australia",
"_to" : "worldVertices/continent-australia",
"_rev" : "_ir4cnbi--B",
"type" : "is-in"
},
{
"_key" : "73826",
"_id" : "worldEdges/73826",
"_from" : "worldVertices/country-austria",
"_to" : "worldVertices/continent-europe",
"_rev" : "_ir4cnbi--C",
"type" : "is-in"
},
{
"_key" : "73828",
"_id" : "worldEdges/73828",
"_from" : "worldVertices/country-bahamas",
"_to" : "worldVertices/continent-north-america",
"_rev" : "_ir4cnbi--D",
"type" : "is-in"
},
{
"_key" : "73830",
"_id" : "worldEdges/73830",
"_from" : "worldVertices/country-bahrain",
"_to" : "worldVertices/continent-asia",
"_rev" : "_ir4cnbm---",
"type" : "is-in"
},
{
"_key" : "73832",
"_id" : "worldEdges/73832",
"_from" : "worldVertices/country-bangladesh",
"_to" : "worldVertices/continent-asia",
"_rev" : "_ir4cnbm--_",
"type" : "is-in"
},
{
"_key" : "73834",
"_id" : "worldEdges/73834",
"_from" : "worldVertices/country-barbados",
"_to" : "worldVertices/continent-north-america",
"_rev" : "_ir4cnbm--A",
"type" : "is-in"
},
{
"_key" : "73836",
"_id" : "worldEdges/73836",
"_from" : "worldVertices/country-belgium",
"_to" : "worldVertices/continent-europe",
"_rev" : "_ir4cnbm--B",
"type" : "is-in"
},
{
"_key" : "73838",
"_id" : "worldEdges/73838",
"_from" : "worldVertices/country-bhutan",
"_to" : "worldVertices/continent-asia",
"_rev" : "_ir4cnbm--C",
"type" : "is-in"
},
{
"_key" : "73840",
"_id" : "worldEdges/73840",
"_from" : "worldVertices/country-bolivia",
"_to" : "worldVertices/continent-south-america",
"_rev" : "_ir4cnbq---",
"type" : "is-in"
},
{
"_key" : "73842",
"_id" : "worldEdges/73842",
"_from" : "worldVertices/country-bosnia-and-herzegovina",
"_to" : "worldVertices/continent-europe",
"_rev" : "_ir4cnbq--_",
"type" : "is-in"
},
{
"_key" : "73844",
"_id" : "worldEdges/73844",
"_from" : "worldVertices/country-botswana",
"_to" : "worldVertices/continent-africa",
"_rev" : "_ir4cnbq--A",
"type" : "is-in"
},
{
"_key" : "73846",
"_id" : "worldEdges/73846",
"_from" : "worldVertices/country-brazil",
"_to" : "worldVertices/continent-south-america",
"_rev" : "_ir4cnbq--B",
"type" : "is-in"
},
{
"_key" : "73848",
"_id" : "worldEdges/73848",
"_from" : "worldVertices/country-brunei",
"_to" : "worldVertices/continent-asia",
"_rev" : "_ir4cnbq--C",
"type" : "is-in"
},
{
"_key" : "73850",
"_id" : "worldEdges/73850",
"_from" : "worldVertices/country-bulgaria",
"_to" : "worldVertices/continent-europe",
"_rev" : "_ir4cnbq--D",
"type" : "is-in"
},
{
"_key" : "73852",
"_id" : "worldEdges/73852",
"_from" : "worldVertices/country-burkina-faso",
"_to" : "worldVertices/continent-africa",
"_rev" : "_ir4cnbu---",
"type" : "is-in"
},
{
"_key" : "73854",
"_id" : "worldEdges/73854",
"_from" : "worldVertices/country-burundi",
"_to" : "worldVertices/continent-africa",
"_rev" : "_ir4cnbu--_",
"type" : "is-in"
},
{
"_key" : "73856",
"_id" : "worldEdges/73856",
"_from" : "worldVertices/country-cambodia",
"_to" : "worldVertices/continent-asia",
"_rev" : "_ir4cnbu--A",
"type" : "is-in"
},
{
"_key" : "73858",
"_id" : "worldEdges/73858",
"_from" : "worldVertices/country-cameroon",
"_to" : "worldVertices/continent-africa",
"_rev" : "_ir4cnbu--B",
"type" : "is-in"
},
{
"_key" : "73860",
"_id" : "worldEdges/73860",
"_from" : "worldVertices/country-canada",
"_to" : "worldVertices/continent-north-america",
"_rev" : "_ir4cnbu--C",
"type" : "is-in"
},
{
"_key" : "73862",
"_id" : "worldEdges/73862",
"_from" : "worldVertices/country-chad",
"_to" : "worldVertices/continent-africa",
"_rev" : "_ir4cnby---",
"type" : "is-in"
},
{
"_key" : "73864",
"_id" : "worldEdges/73864",
"_from" : "worldVertices/country-chile",
"_to" : "worldVertices/continent-south-america",
"_rev" : "_ir4cnby--_",
"type" : "is-in"
},
{
"_key" : "73866",
"_id" : "worldEdges/73866",
"_from" : "worldVertices/country-colombia",
"_to" : "worldVertices/continent-south-america",
"_rev" : "_ir4cnby--A",
"type" : "is-in"
},
{
"_key" : "73868",
"_id" : "worldEdges/73868",
"_from" : "worldVertices/country-cote-d-ivoire",
"_to" : "worldVertices/continent-africa",
"_rev" : "_ir4cnby--B",
"type" : "is-in"
},
{
"_key" : "73870",
"_id" : "worldEdges/73870",
"_from" : "worldVertices/country-croatia",
"_to" : "worldVertices/continent-europe",
"_rev" : "_ir4cnby--C",
"type" : "is-in"
},
{
"_key" : "73872",
"_id" : "worldEdges/73872",
"_from" : "worldVertices/country-czech-republic",
"_to" : "worldVertices/continent-europe",
"_rev" : "_ir4cnby--D",
"type" : "is-in"
},
{
"_key" : "73874",
"_id" : "worldEdges/73874",
"_from" : "worldVertices/country-denmark",
"_to" : "worldVertices/continent-europe",
"_rev" : "_ir4cnb2---",
"type" : "is-in"
},
{
"_key" : "73876",
"_id" : "worldEdges/73876",
"_from" : "worldVertices/country-ecuador",
"_to" : "worldVertices/continent-south-america",
"_rev" : "_ir4cnb2--_",
"type" : "is-in"
},
{
"_key" : "73878",
"_id" : "worldEdges/73878",
"_from" : "worldVertices/country-egypt",
"_to" : "worldVertices/continent-africa",
"_rev" : "_ir4cnb2--A",
"type" : "is-in"
},
{
"_key" : "73880",
"_id" : "worldEdges/73880",
"_from" : "worldVertices/country-eritrea",
"_to" : "worldVertices/continent-africa",
"_rev" : "_ir4cnb2--B",
"type" : "is-in"
},
{
"_key" : "73882",
"_id" : "worldEdges/73882",
"_from" : "worldVertices/country-finland",
"_to" : "worldVertices/continent-europe",
"_rev" : "_ir4cnb2--C",
"type" : "is-in"
},
{
"_key" : "73884",
"_id" : "worldEdges/73884",
"_from" : "worldVertices/country-france",
"_to" : "worldVertices/continent-europe",
"_rev" : "_ir4cnb2--D",
"type" : "is-in"
},
{
"_key" : "73886",
"_id" : "worldEdges/73886",
"_from" : "worldVertices/country-germany",
"_to" : "worldVertices/continent-europe",
"_rev" : "_ir4cnb6---",
"type" : "is-in"
},
{
"_key" : "73888",
"_id" : "worldEdges/73888",
"_from" : "worldVertices/country-people-s-republic-of-china",
"_to" : "worldVertices/continent-asia",
"_rev" : "_ir4cnb6--_",
"type" : "is-in"
},
{
"_key" : "73890",
"_id" : "worldEdges/73890",
"_from" : "worldVertices/capital-algiers",
"_to" : "worldVertices/country-algeria",
"_rev" : "_ir4cnb6--A",
"type" : "is-in"
},
{
"_key" : "73892",
"_id" : "worldEdges/73892",
"_from" : "worldVertices/capital-andorra-la-vella",
"_to" : "worldVertices/country-andorra",
"_rev" : "_ir4cnb6--B",
"type" : "is-in"
},
{
"_key" : "73894",
"_id" : "worldEdges/73894",
"_from" : "worldVertices/capital-asmara",
"_to" : "worldVertices/country-eritrea",
"_rev" : "_ir4cnb6--C",
"type" : "is-in"
},
{
"_key" : "73896",
"_id" : "worldEdges/73896",
"_from" : "worldVertices/capital-bandar-seri-begawan",
"_to" : "worldVertices/country-brunei",
"_rev" : "_ir4cnb6--D",
"type" : "is-in"
},
{
"_key" : "73898",
"_id" : "worldEdges/73898",
"_from" : "worldVertices/capital-beijing",
"_to" : "worldVertices/country-people-s-republic-of-china",
"_rev" : "_ir4cnc----",
"type" : "is-in"
},
{
"_key" : "73900",
"_id" : "worldEdges/73900",
"_from" : "worldVertices/capital-berlin",
"_to" : "worldVertices/country-germany",
"_rev" : "_ir4cnc---_",
"type" : "is-in"
},
{
"_key" : "73902",
"_id" : "worldEdges/73902",
"_from" : "worldVertices/capital-bogota",
"_to" : "worldVertices/country-colombia",
"_rev" : "_ir4cnc---A",
"type" : "is-in"
},
{
"_key" : "73904",
"_id" : "worldEdges/73904",
"_from" : "worldVertices/capital-brasilia",
"_to" : "worldVertices/country-brazil",
"_rev" : "_ir4cnc---B",
"type" : "is-in"
},
{
"_key" : "73906",
"_id" : "worldEdges/73906",
"_from" : "worldVertices/capital-bridgetown",
"_to" : "worldVertices/country-barbados",
"_rev" : "_ir4cnc---C",
"type" : "is-in"
},
{
"_key" : "73908",
"_id" : "worldEdges/73908",
"_from" : "worldVertices/capital-brussels",
"_to" : "worldVertices/country-belgium",
"_rev" : "_ir4cncC---",
"type" : "is-in"
},
{
"_key" : "73910",
"_id" : "worldEdges/73910",
"_from" : "worldVertices/capital-buenos-aires",
"_to" : "worldVertices/country-argentina",
"_rev" : "_ir4cncC--_",
"type" : "is-in"
},
{
"_key" : "73912",
"_id" : "worldEdges/73912",
"_from" : "worldVertices/capital-bujumbura",
"_to" : "worldVertices/country-burundi",
"_rev" : "_ir4cncC--A",
"type" : "is-in"
},
{
"_key" : "73914",
"_id" : "worldEdges/73914",
"_from" : "worldVertices/capital-cairo",
"_to" : "worldVertices/country-egypt",
"_rev" : "_ir4cncC--B",
"type" : "is-in"
},
{
"_key" : "73916",
"_id" : "worldEdges/73916",
"_from" : "worldVertices/capital-canberra",
"_to" : "worldVertices/country-australia",
"_rev" : "_ir4cncC--C",
"type" : "is-in"
},
{
"_key" : "73918",
"_id" : "worldEdges/73918",
"_from" : "worldVertices/capital-copenhagen",
"_to" : "worldVertices/country-denmark",
"_rev" : "_ir4cncC--D",
"type" : "is-in"
},
{
"_key" : "73920",
"_id" : "worldEdges/73920",
"_from" : "worldVertices/capital-dhaka",
"_to" : "worldVertices/country-bangladesh",
"_rev" : "_ir4cncG---",
"type" : "is-in"
},
{
"_key" : "73922",
"_id" : "worldEdges/73922",
"_from" : "worldVertices/capital-gaborone",
"_to" : "worldVertices/country-botswana",
"_rev" : "_ir4cncG--_",
"type" : "is-in"
},
{
"_key" : "73924",
"_id" : "worldEdges/73924",
"_from" : "worldVertices/capital-helsinki",
"_to" : "worldVertices/country-finland",
"_rev" : "_ir4cncG--A",
"type" : "is-in"
},
{
"_key" : "73926",
"_id" : "worldEdges/73926",
"_from" : "worldVertices/capital-kabul",
"_to" : "worldVertices/country-afghanistan",
"_rev" : "_ir4cncG--B",
"type" : "is-in"
},
{
"_key" : "73928",
"_id" : "worldEdges/73928",
"_from" : "worldVertices/capital-la-paz",
"_to" : "worldVertices/country-bolivia",
"_rev" : "_ir4cncG--C",
"type" : "is-in"
},
{
"_key" : "73930",
"_id" : "worldEdges/73930",
"_from" : "worldVertices/capital-luanda",
"_to" : "worldVertices/country-angola",
"_rev" : "_ir4cncK---",
"type" : "is-in"
},
{
"_key" : "73932",
"_id" : "worldEdges/73932",
"_from" : "worldVertices/capital-manama",
"_to" : "worldVertices/country-bahrain",
"_rev" : "_ir4cncK--_",
"type" : "is-in"
},
{
"_key" : "73934",
"_id" : "worldEdges/73934",
"_from" : "worldVertices/capital-nassau",
"_to" : "worldVertices/country-bahamas",
"_rev" : "_ir4cncK--A",
"type" : "is-in"
},
{
"_key" : "73936",
"_id" : "worldEdges/73936",
"_from" : "worldVertices/capital-n-djamena",
"_to" : "worldVertices/country-chad",
"_rev" : "_ir4cncK--B",
"type" : "is-in"
},
{
"_key" : "73938",
"_id" : "worldEdges/73938",
"_from" : "worldVertices/capital-ottawa",
"_to" : "worldVertices/country-canada",
"_rev" : "_ir4cncK--C",
"type" : "is-in"
},
{
"_key" : "73940",
"_id" : "worldEdges/73940",
"_from" : "worldVertices/capital-ouagadougou",
"_to" : "worldVertices/country-burkina-faso",
"_rev" : "_ir4cncK--D",
"type" : "is-in"
},
{
"_key" : "73942",
"_id" : "worldEdges/73942",
"_from" : "worldVertices/capital-paris",
"_to" : "worldVertices/country-france",
"_rev" : "_ir4cncO---",
"type" : "is-in"
},
{
"_key" : "73944",
"_id" : "worldEdges/73944",
"_from" : "worldVertices/capital-phnom-penh",
"_to" : "worldVertices/country-cambodia",
"_rev" : "_ir4cncO--_",
"type" : "is-in"
},
{
"_key" : "73946",
"_id" : "worldEdges/73946",
"_from" : "worldVertices/capital-prague",
"_to" : "worldVertices/country-czech-republic",
"_rev" : "_ir4cncO--A",
"type" : "is-in"
},
{
"_key" : "73948",
"_id" : "worldEdges/73948",
"_from" : "worldVertices/capital-quito",
"_to" : "worldVertices/country-ecuador",
"_rev" : "_ir4cncO--B",
"type" : "is-in"
},
{
"_key" : "73950",
"_id" : "worldEdges/73950",
"_from" : "worldVertices/capital-saint-john-s",
"_to" : "worldVertices/country-antigua-and-barbuda",
"_rev" : "_ir4cncO--C",
"type" : "is-in"
},
{
"_key" : "73952",
"_id" : "worldEdges/73952",
"_from" : "worldVertices/capital-santiago",
"_to" : "worldVertices/country-chile",
"_rev" : "_ir4cncS---",
"type" : "is-in"
},
{
"_key" : "73954",
"_id" : "worldEdges/73954",
"_from" : "worldVertices/capital-sarajevo",
"_to" : "worldVertices/country-bosnia-and-herzegovina",
"_rev" : "_ir4cncS--_",
"type" : "is-in"
},
{
"_key" : "73956",
"_id" : "worldEdges/73956",
"_from" : "worldVertices/capital-sofia",
"_to" : "worldVertices/country-bulgaria",
"_rev" : "_ir4cncS--A",
"type" : "is-in"
},
{
"_key" : "73958",
"_id" : "worldEdges/73958",
"_from" : "worldVertices/capital-thimphu",
"_to" : "worldVertices/country-bhutan",
"_rev" : "_ir4cncS--B",
"type" : "is-in"
},
{
"_key" : "73960",
"_id" : "worldEdges/73960",
"_from" : "worldVertices/capital-tirana",
"_to" : "worldVertices/country-albania",
"_rev" : "_ir4cncS--C",
"type" : "is-in"
},
{
"_key" : "73962",
"_id" : "worldEdges/73962",
"_from" : "worldVertices/capital-vienna",
"_to" : "worldVertices/country-austria",
"_rev" : "_ir4cncS--D",
"type" : "is-in"
},
{
"_key" : "73964",
"_id" : "worldEdges/73964",
"_from" : "worldVertices/capital-yamoussoukro",
"_to" : "worldVertices/country-cote-d-ivoire",
"_rev" : "_ir4cncW---",
"type" : "is-in"
},
{
"_key" : "73966",
"_id" : "worldEdges/73966",
"_from" : "worldVertices/capital-yaounde",
"_to" : "worldVertices/country-cameroon",
"_rev" : "_ir4cncW--_",
"type" : "is-in"
},
{
"_key" : "73968",
"_id" : "worldEdges/73968",
"_from" : "worldVertices/capital-zagreb",
"_to" : "worldVertices/country-croatia",
"_rev" : "_ir4cncW--A",
"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" : "_ir4cnhu---",
"name" : "Alice"
},
{
"_key" : "diana",
"_id" : "female/diana",
"_rev" : "_ir4cnhu--B",
"name" : "Diana"
}
]
[
{
"_key" : "bob",
"_id" : "male/bob",
"_rev" : "_ir4cnhu--_",
"name" : "Bob"
},
{
"_key" : "charly",
"_id" : "male/charly",
"_rev" : "_ir4cnhu--A",
"name" : "Charly"
}
]
[
{
"_key" : "74305",
"_id" : "relation/74305",
"_from" : "female/alice",
"_to" : "male/bob",
"_rev" : "_ir4cnhu--C",
"type" : "married",
"vertex" : "alice"
},
{
"_key" : "74307",
"_id" : "relation/74307",
"_from" : "female/alice",
"_to" : "male/charly",
"_rev" : "_ir4cnhy---",
"type" : "friend",
"vertex" : "alice"
},
{
"_key" : "74309",
"_id" : "relation/74309",
"_from" : "male/charly",
"_to" : "female/diana",
"_rev" : "_ir4cnhy--_",
"type" : "married",
"vertex" : "charly"
},
{
"_key" : "74311",
"_id" : "relation/74311",
"_from" : "male/bob",
"_to" : "female/diana",
"_rev" : "_ir4cnhy--A",
"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" : "_ir4cniq---",
"population" : 80000,
"isCapital" : false,
"geometry" : {
"type" : "Point",
"coordinates" : [
4.84,
45.76
]
}
},
{
"_key" : "Paris",
"_id" : "frenchCity/Paris",
"_rev" : "_ir4cniq--_",
"population" : 4000000,
"isCapital" : true,
"geometry" : {
"type" : "Point",
"coordinates" : [
2.3508,
48.8567
]
}
}
]
[
{
"_key" : "Berlin",
"_id" : "germanCity/Berlin",
"_rev" : "_ir4cnim---",
"population" : 3000000,
"isCapital" : true,
"geometry" : {
"type" : "Point",
"coordinates" : [
13.3833,
52.5167
]
}
},
{
"_key" : "Cologne",
"_id" : "germanCity/Cologne",
"_rev" : "_ir4cnim--_",
"population" : 1000000,
"isCapital" : false,
"geometry" : {
"type" : "Point",
"coordinates" : [
6.9528,
50.9364
]
}
},
{
"_key" : "Hamburg",
"_id" : "germanCity/Hamburg",
"_rev" : "_ir4cnim--A",
"population" : 1000000,
"isCapital" : false,
"geometry" : {
"type" : "Point",
"coordinates" : [
10.0014,
53.5653
]
}
}
]
[
{
"_key" : "74394",
"_id" : "germanHighway/74394",
"_from" : "germanCity/Berlin",
"_to" : "germanCity/Cologne",
"_rev" : "_ir4cniu--_",
"distance" : 850
},
{
"_key" : "74396",
"_id" : "germanHighway/74396",
"_from" : "germanCity/Berlin",
"_to" : "germanCity/Hamburg",
"_rev" : "_ir4cniy---",
"distance" : 400
},
{
"_key" : "74398",
"_id" : "germanHighway/74398",
"_from" : "germanCity/Hamburg",
"_to" : "germanCity/Cologne",
"_rev" : "_ir4cniy--_",
"distance" : 500
}
]
[
{
"_key" : "74400",
"_id" : "frenchHighway/74400",
"_from" : "frenchCity/Paris",
"_to" : "frenchCity/Lyon",
"_rev" : "_ir4cniy--A",
"distance" : 550
}
]
[
{
"_key" : "74402",
"_id" : "internationalHighway/74402",
"_from" : "germanCity/Berlin",
"_to" : "frenchCity/Lyon",
"_rev" : "_ir4cniy--B",
"distance" : 1100
},
{
"_key" : "74404",
"_id" : "internationalHighway/74404",
"_from" : "germanCity/Berlin",
"_to" : "frenchCity/Paris",
"_rev" : "_ir4cniy--C",
"distance" : 1200
},
{
"_key" : "74406",
"_id" : "internationalHighway/74406",
"_from" : "germanCity/Hamburg",
"_to" : "frenchCity/Paris",
"_rev" : "_ir4cniy--D",
"distance" : 900
},
{
"_key" : "74408",
"_id" : "internationalHighway/74408",
"_from" : "germanCity/Hamburg",
"_to" : "frenchCity/Lyon",
"_rev" : "_ir4cniy--E",
"distance" : 1300
},
{
"_key" : "74410",
"_id" : "internationalHighway/74410",
"_from" : "germanCity/Cologne",
"_to" : "frenchCity/Lyon",
"_rev" : "_ir4cni2---",
"distance" : 700
},
{
"_key" : "74412",
"_id" : "internationalHighway/74412",
"_from" : "germanCity/Cologne",
"_to" : "frenchCity/Paris",
"_rev" : "_ir4cni2--_",
"distance" : 550
}
]
Connected Components Graph
A small example graph comprised of components
(vertices) and connections
(edges). Good for trying out graph algorithms such as Weakly Connected
Components (WCC).
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" : "_ir4cnka---"
},
{
"_key" : "A2",
"_id" : "components/A2",
"_rev" : "_ir4cnka--_"
},
{
"_key" : "A3",
"_id" : "components/A3",
"_rev" : "_ir4cnka--A"
},
{
"_key" : "A4",
"_id" : "components/A4",
"_rev" : "_ir4cnka--B"
},
{
"_key" : "B1",
"_id" : "components/B1",
"_rev" : "_ir4cnka--C"
},
{
"_key" : "B3",
"_id" : "components/B3",
"_rev" : "_ir4cnke---"
},
{
"_key" : "B2",
"_id" : "components/B2",
"_rev" : "_ir4cnke--_"
},
{
"_key" : "B4",
"_id" : "components/B4",
"_rev" : "_ir4cnke--A"
},
{
"_key" : "B6",
"_id" : "components/B6",
"_rev" : "_ir4cnki---"
},
{
"_key" : "B5",
"_id" : "components/B5",
"_rev" : "_ir4cnki--_"
},
{
"_key" : "B7",
"_id" : "components/B7",
"_rev" : "_ir4cnki--A"
},
{
"_key" : "B8",
"_id" : "components/B8",
"_rev" : "_ir4cnki--B"
},
{
"_key" : "B9",
"_id" : "components/B9",
"_rev" : "_ir4cnki--C"
},
{
"_key" : "B10",
"_id" : "components/B10",
"_rev" : "_ir4cnkm---"
},
{
"_key" : "B19",
"_id" : "components/B19",
"_rev" : "_ir4cnkm--_"
},
{
"_key" : "B11",
"_id" : "components/B11",
"_rev" : "_ir4cnkm--A"
},
{
"_key" : "B12",
"_id" : "components/B12",
"_rev" : "_ir4cnkm--B"
},
{
"_key" : "B13",
"_id" : "components/B13",
"_rev" : "_ir4cnkm--C"
},
{
"_key" : "B20",
"_id" : "components/B20",
"_rev" : "_ir4cnkm--D"
},
{
"_key" : "B14",
"_id" : "components/B14",
"_rev" : "_ir4cnkq---"
},
{
"_key" : "B15",
"_id" : "components/B15",
"_rev" : "_ir4cnkq--_"
},
{
"_key" : "B16",
"_id" : "components/B16",
"_rev" : "_ir4cnkq--A"
},
{
"_key" : "B17",
"_id" : "components/B17",
"_rev" : "_ir4cnkq--B"
},
{
"_key" : "B18",
"_id" : "components/B18",
"_rev" : "_ir4cnkq--C"
},
{
"_key" : "B21",
"_id" : "components/B21",
"_rev" : "_ir4cnku---"
},
{
"_key" : "B22",
"_id" : "components/B22",
"_rev" : "_ir4cnku--_"
},
{
"_key" : "C1",
"_id" : "components/C1",
"_rev" : "_ir4cnku--A"
},
{
"_key" : "C2",
"_id" : "components/C2",
"_rev" : "_ir4cnku--B"
},
{
"_key" : "C3",
"_id" : "components/C3",
"_rev" : "_ir4cnku--C"
},
{
"_key" : "C4",
"_id" : "components/C4",
"_rev" : "_ir4cnku--D"
},
{
"_key" : "C5",
"_id" : "components/C5",
"_rev" : "_ir4cnky---"
},
{
"_key" : "C7",
"_id" : "components/C7",
"_rev" : "_ir4cnky--_"
},
{
"_key" : "C6",
"_id" : "components/C6",
"_rev" : "_ir4cnky--A"
},
{
"_key" : "C8",
"_id" : "components/C8",
"_rev" : "_ir4cnky--B"
},
{
"_key" : "C9",
"_id" : "components/C9",
"_rev" : "_ir4cnky--C"
},
{
"_key" : "C10",
"_id" : "components/C10",
"_rev" : "_ir4cnk2---"
}
]
[
{
"_key" : "74525",
"_id" : "connections/74525",
"_from" : "components/A1",
"_to" : "components/A2",
"_rev" : "_ir4cnk2--_"
},
{
"_key" : "74527",
"_id" : "connections/74527",
"_from" : "components/A2",
"_to" : "components/A3",
"_rev" : "_ir4cnk2--A"
},
{
"_key" : "74529",
"_id" : "connections/74529",
"_from" : "components/A3",
"_to" : "components/A4",
"_rev" : "_ir4cnk2--B"
},
{
"_key" : "74531",
"_id" : "connections/74531",
"_from" : "components/A4",
"_to" : "components/A1",
"_rev" : "_ir4cnk6---"
},
{
"_key" : "74533",
"_id" : "connections/74533",
"_from" : "components/B1",
"_to" : "components/B3",
"_rev" : "_ir4cnk6--_"
},
{
"_key" : "74535",
"_id" : "connections/74535",
"_from" : "components/B2",
"_to" : "components/B4",
"_rev" : "_ir4cnk6--A"
},
{
"_key" : "74537",
"_id" : "connections/74537",
"_from" : "components/B3",
"_to" : "components/B6",
"_rev" : "_ir4cnk6--B"
},
{
"_key" : "74539",
"_id" : "connections/74539",
"_from" : "components/B4",
"_to" : "components/B3",
"_rev" : "_ir4cnk6--C"
},
{
"_key" : "74541",
"_id" : "connections/74541",
"_from" : "components/B4",
"_to" : "components/B5",
"_rev" : "_ir4cnk6--D"
},
{
"_key" : "74543",
"_id" : "connections/74543",
"_from" : "components/B6",
"_to" : "components/B7",
"_rev" : "_ir4cnl----"
},
{
"_key" : "74545",
"_id" : "connections/74545",
"_from" : "components/B7",
"_to" : "components/B8",
"_rev" : "_ir4cnl---_"
},
{
"_key" : "74547",
"_id" : "connections/74547",
"_from" : "components/B7",
"_to" : "components/B9",
"_rev" : "_ir4cnl---A"
},
{
"_key" : "74549",
"_id" : "connections/74549",
"_from" : "components/B7",
"_to" : "components/B10",
"_rev" : "_ir4cnl---B"
},
{
"_key" : "74551",
"_id" : "connections/74551",
"_from" : "components/B7",
"_to" : "components/B19",
"_rev" : "_ir4cnl---C"
},
{
"_key" : "74553",
"_id" : "connections/74553",
"_from" : "components/B11",
"_to" : "components/B10",
"_rev" : "_ir4cnlC---"
},
{
"_key" : "74555",
"_id" : "connections/74555",
"_from" : "components/B12",
"_to" : "components/B11",
"_rev" : "_ir4cnlC--_"
},
{
"_key" : "74557",
"_id" : "connections/74557",
"_from" : "components/B13",
"_to" : "components/B12",
"_rev" : "_ir4cnlC--A"
},
{
"_key" : "74559",
"_id" : "connections/74559",
"_from" : "components/B13",
"_to" : "components/B20",
"_rev" : "_ir4cnlC--B"
},
{
"_key" : "74561",
"_id" : "connections/74561",
"_from" : "components/B14",
"_to" : "components/B13",
"_rev" : "_ir4cnlC--C"
},
{
"_key" : "74563",
"_id" : "connections/74563",
"_from" : "components/B15",
"_to" : "components/B14",
"_rev" : "_ir4cnlC--D"
},
{
"_key" : "74565",
"_id" : "connections/74565",
"_from" : "components/B15",
"_to" : "components/B16",
"_rev" : "_ir4cnlG---"
},
{
"_key" : "74567",
"_id" : "connections/74567",
"_from" : "components/B17",
"_to" : "components/B15",
"_rev" : "_ir4cnlG--_"
},
{
"_key" : "74569",
"_id" : "connections/74569",
"_from" : "components/B17",
"_to" : "components/B18",
"_rev" : "_ir4cnlG--A"
},
{
"_key" : "74571",
"_id" : "connections/74571",
"_from" : "components/B19",
"_to" : "components/B17",
"_rev" : "_ir4cnlG--B"
},
{
"_key" : "74573",
"_id" : "connections/74573",
"_from" : "components/B20",
"_to" : "components/B21",
"_rev" : "_ir4cnlG--C"
},
{
"_key" : "74575",
"_id" : "connections/74575",
"_from" : "components/B20",
"_to" : "components/B22",
"_rev" : "_ir4cnlK---"
},
{
"_key" : "74577",
"_id" : "connections/74577",
"_from" : "components/C1",
"_to" : "components/C2",
"_rev" : "_ir4cnlK--_"
},
{
"_key" : "74579",
"_id" : "connections/74579",
"_from" : "components/C2",
"_to" : "components/C3",
"_rev" : "_ir4cnlK--A"
},
{
"_key" : "74581",
"_id" : "connections/74581",
"_from" : "components/C3",
"_to" : "components/C4",
"_rev" : "_ir4cnlK--B"
},
{
"_key" : "74583",
"_id" : "connections/74583",
"_from" : "components/C4",
"_to" : "components/C5",
"_rev" : "_ir4cnlK--C"
},
{
"_key" : "74585",
"_id" : "connections/74585",
"_from" : "components/C4",
"_to" : "components/C7",
"_rev" : "_ir4cnlO---"
},
{
"_key" : "74587",
"_id" : "connections/74587",
"_from" : "components/C5",
"_to" : "components/C6",
"_rev" : "_ir4cnlO--_"
},
{
"_key" : "74589",
"_id" : "connections/74589",
"_from" : "components/C5",
"_to" : "components/C7",
"_rev" : "_ir4cnlO--A"
},
{
"_key" : "74591",
"_id" : "connections/74591",
"_from" : "components/C7",
"_to" : "components/C8",
"_rev" : "_ir4cnlO--B"
},
{
"_key" : "74593",
"_id" : "connections/74593",
"_from" : "components/C8",
"_to" : "components/C9",
"_rev" : "_ir4cnlO--C"
},
{
"_key" : "74595",
"_id" : "connections/74595",
"_from" : "components/C8",
"_to" : "components/C10",
"_rev" : "_ir4cnlO--D"
}
]
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.