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" : "_jJdpSPe---",
"name" : "Alice"
},
{
"_key" : "bob",
"_id" : "persons/bob",
"_rev" : "_jJdpSPe--_",
"name" : "Bob"
},
{
"_key" : "charlie",
"_id" : "persons/charlie",
"_rev" : "_jJdpSPe--A",
"name" : "Charlie"
},
{
"_key" : "dave",
"_id" : "persons/dave",
"_rev" : "_jJdpSPe--B",
"name" : "Dave"
},
{
"_key" : "eve",
"_id" : "persons/eve",
"_rev" : "_jJdpSPi---",
"name" : "Eve"
}
]
[
{
"_key" : "73686",
"_id" : "knows/73686",
"_from" : "persons/alice",
"_to" : "persons/bob",
"_rev" : "_jJdpSPi--_",
"vertex" : "alice"
},
{
"_key" : "73688",
"_id" : "knows/73688",
"_from" : "persons/bob",
"_to" : "persons/charlie",
"_rev" : "_jJdpSPi--A",
"vertex" : "bob"
},
{
"_key" : "73690",
"_id" : "knows/73690",
"_from" : "persons/bob",
"_to" : "persons/dave",
"_rev" : "_jJdpSPi--B",
"vertex" : "bob"
},
{
"_key" : "73692",
"_id" : "knows/73692",
"_from" : "persons/eve",
"_to" : "persons/alice",
"_rev" : "_jJdpSPm---",
"vertex" : "eve"
},
{
"_key" : "73694",
"_id" : "knows/73694",
"_from" : "persons/eve",
"_to" : "persons/bob",
"_rev" : "_jJdpSPm--_",
"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" : "_jJdpSQW---",
"label" : "1"
},
{
"_key" : "B",
"_id" : "circles/B",
"_rev" : "_jJdpSQW--_",
"label" : "2"
},
{
"_key" : "C",
"_id" : "circles/C",
"_rev" : "_jJdpSQa---",
"label" : "3"
},
{
"_key" : "D",
"_id" : "circles/D",
"_rev" : "_jJdpSQa--_",
"label" : "4"
},
{
"_key" : "E",
"_id" : "circles/E",
"_rev" : "_jJdpSQa--A",
"label" : "5"
},
{
"_key" : "F",
"_id" : "circles/F",
"_rev" : "_jJdpSQa--B",
"label" : "6"
},
{
"_key" : "G",
"_id" : "circles/G",
"_rev" : "_jJdpSQa--C",
"label" : "7"
},
{
"_key" : "H",
"_id" : "circles/H",
"_rev" : "_jJdpSQe---",
"label" : "8"
},
{
"_key" : "I",
"_id" : "circles/I",
"_rev" : "_jJdpSQe--_",
"label" : "9"
},
{
"_key" : "J",
"_id" : "circles/J",
"_rev" : "_jJdpSQe--A",
"label" : "10"
},
{
"_key" : "K",
"_id" : "circles/K",
"_rev" : "_jJdpSQe--B",
"label" : "11"
}
]
[
{
"_key" : "73753",
"_id" : "edges/73753",
"_from" : "circles/A",
"_to" : "circles/B",
"_rev" : "_jJdpSQe--C",
"theFalse" : false,
"theTruth" : true,
"label" : "left_bar"
},
{
"_key" : "73755",
"_id" : "edges/73755",
"_from" : "circles/B",
"_to" : "circles/C",
"_rev" : "_jJdpSQi---",
"theFalse" : false,
"theTruth" : true,
"label" : "left_blarg"
},
{
"_key" : "73757",
"_id" : "edges/73757",
"_from" : "circles/C",
"_to" : "circles/D",
"_rev" : "_jJdpSQi--_",
"theFalse" : false,
"theTruth" : true,
"label" : "left_blorg"
},
{
"_key" : "73759",
"_id" : "edges/73759",
"_from" : "circles/B",
"_to" : "circles/E",
"_rev" : "_jJdpSQi--A",
"theFalse" : false,
"theTruth" : true,
"label" : "left_blub"
},
{
"_key" : "73761",
"_id" : "edges/73761",
"_from" : "circles/E",
"_to" : "circles/F",
"_rev" : "_jJdpSQi--B",
"theFalse" : false,
"theTruth" : true,
"label" : "left_schubi"
},
{
"_key" : "73763",
"_id" : "edges/73763",
"_from" : "circles/A",
"_to" : "circles/G",
"_rev" : "_jJdpSQi--C",
"theFalse" : false,
"theTruth" : true,
"label" : "right_foo"
},
{
"_key" : "73765",
"_id" : "edges/73765",
"_from" : "circles/G",
"_to" : "circles/H",
"_rev" : "_jJdpSQm---",
"theFalse" : false,
"theTruth" : true,
"label" : "right_blob"
},
{
"_key" : "73767",
"_id" : "edges/73767",
"_from" : "circles/H",
"_to" : "circles/I",
"_rev" : "_jJdpSQm--_",
"theFalse" : false,
"theTruth" : true,
"label" : "right_blub"
},
{
"_key" : "73769",
"_id" : "edges/73769",
"_from" : "circles/G",
"_to" : "circles/J",
"_rev" : "_jJdpSQm--A",
"theFalse" : false,
"theTruth" : true,
"label" : "right_zip"
},
{
"_key" : "73771",
"_id" : "edges/73771",
"_from" : "circles/J",
"_to" : "circles/K",
"_rev" : "_jJdpSQm--B",
"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" : "_jJdpSSW---",
"label" : "Inverness"
},
{
"_key" : "Aberdeen",
"_id" : "places/Aberdeen",
"_rev" : "_jJdpSSW--_",
"label" : "Aberdeen"
},
{
"_key" : "Leuchars",
"_id" : "places/Leuchars",
"_rev" : "_jJdpSSa---",
"label" : "Leuchars"
},
{
"_key" : "StAndrews",
"_id" : "places/StAndrews",
"_rev" : "_jJdpSSa--_",
"label" : "StAndrews"
},
{
"_key" : "Edinburgh",
"_id" : "places/Edinburgh",
"_rev" : "_jJdpSSa--A",
"label" : "Edinburgh"
},
{
"_key" : "Glasgow",
"_id" : "places/Glasgow",
"_rev" : "_jJdpSSa--B",
"label" : "Glasgow"
},
{
"_key" : "York",
"_id" : "places/York",
"_rev" : "_jJdpSSa--C",
"label" : "York"
},
{
"_key" : "Carlisle",
"_id" : "places/Carlisle",
"_rev" : "_jJdpSSa--D",
"label" : "Carlisle"
},
{
"_key" : "Birmingham",
"_id" : "places/Birmingham",
"_rev" : "_jJdpSSe---",
"label" : "Birmingham"
},
{
"_key" : "London",
"_id" : "places/London",
"_rev" : "_jJdpSSe--_",
"label" : "London"
},
{
"_key" : "Brussels",
"_id" : "places/Brussels",
"_rev" : "_jJdpSSe--A",
"label" : "Brussels"
},
{
"_key" : "Cologne",
"_id" : "places/Cologne",
"_rev" : "_jJdpSSe--B",
"label" : "Cologne"
},
{
"_key" : "Toronto",
"_id" : "places/Toronto",
"_rev" : "_jJdpSSe--C",
"label" : "Toronto"
},
{
"_key" : "Winnipeg",
"_id" : "places/Winnipeg",
"_rev" : "_jJdpSSe--D",
"label" : "Winnipeg"
},
{
"_key" : "Saskatoon",
"_id" : "places/Saskatoon",
"_rev" : "_jJdpSSi---",
"label" : "Saskatoon"
},
{
"_key" : "Edmonton",
"_id" : "places/Edmonton",
"_rev" : "_jJdpSSi--_",
"label" : "Edmonton"
},
{
"_key" : "Jasper",
"_id" : "places/Jasper",
"_rev" : "_jJdpSSi--A",
"label" : "Jasper"
},
{
"_key" : "Vancouver",
"_id" : "places/Vancouver",
"_rev" : "_jJdpSSi--B",
"label" : "Vancouver"
}
]
[
{
"_key" : "73837",
"_id" : "connections/73837",
"_from" : "places/Inverness",
"_to" : "places/Aberdeen",
"_rev" : "_jJdpSSi--C",
"travelTime" : 3
},
{
"_key" : "73839",
"_id" : "connections/73839",
"_from" : "places/Aberdeen",
"_to" : "places/Inverness",
"_rev" : "_jJdpSSm---",
"travelTime" : 2.5
},
{
"_key" : "73841",
"_id" : "connections/73841",
"_from" : "places/Aberdeen",
"_to" : "places/Leuchars",
"_rev" : "_jJdpSSm--_",
"travelTime" : 1.5
},
{
"_key" : "73843",
"_id" : "connections/73843",
"_from" : "places/Leuchars",
"_to" : "places/Aberdeen",
"_rev" : "_jJdpSSm--A",
"travelTime" : 1
},
{
"_key" : "73845",
"_id" : "connections/73845",
"_from" : "places/Leuchars",
"_to" : "places/Edinburgh",
"_rev" : "_jJdpSSm--B",
"travelTime" : 1.5
},
{
"_key" : "73847",
"_id" : "connections/73847",
"_from" : "places/Edinburgh",
"_to" : "places/Leuchars",
"_rev" : "_jJdpSSm--C",
"travelTime" : 3
},
{
"_key" : "73849",
"_id" : "connections/73849",
"_from" : "places/Edinburgh",
"_to" : "places/Glasgow",
"_rev" : "_jJdpSSq---",
"travelTime" : 1
},
{
"_key" : "73851",
"_id" : "connections/73851",
"_from" : "places/Glasgow",
"_to" : "places/Edinburgh",
"_rev" : "_jJdpSSq--_",
"travelTime" : 1
},
{
"_key" : "73853",
"_id" : "connections/73853",
"_from" : "places/Edinburgh",
"_to" : "places/York",
"_rev" : "_jJdpSSq--A",
"travelTime" : 3.5
},
{
"_key" : "73855",
"_id" : "connections/73855",
"_from" : "places/York",
"_to" : "places/Edinburgh",
"_rev" : "_jJdpSSq--B",
"travelTime" : 4
},
{
"_key" : "73857",
"_id" : "connections/73857",
"_from" : "places/Glasgow",
"_to" : "places/Carlisle",
"_rev" : "_jJdpSSq--C",
"travelTime" : 1
},
{
"_key" : "73859",
"_id" : "connections/73859",
"_from" : "places/Carlisle",
"_to" : "places/Glasgow",
"_rev" : "_jJdpSSu---",
"travelTime" : 1
},
{
"_key" : "73861",
"_id" : "connections/73861",
"_from" : "places/Carlisle",
"_to" : "places/York",
"_rev" : "_jJdpSSu--_",
"travelTime" : 2.5
},
{
"_key" : "73863",
"_id" : "connections/73863",
"_from" : "places/York",
"_to" : "places/Carlisle",
"_rev" : "_jJdpSSu--A",
"travelTime" : 3.5
},
{
"_key" : "73865",
"_id" : "connections/73865",
"_from" : "places/Carlisle",
"_to" : "places/Birmingham",
"_rev" : "_jJdpSSu--B",
"travelTime" : 2
},
{
"_key" : "73867",
"_id" : "connections/73867",
"_from" : "places/Birmingham",
"_to" : "places/Carlisle",
"_rev" : "_jJdpSSu--C",
"travelTime" : 1
},
{
"_key" : "73869",
"_id" : "connections/73869",
"_from" : "places/Birmingham",
"_to" : "places/London",
"_rev" : "_jJdpSSy---",
"travelTime" : 1.5
},
{
"_key" : "73871",
"_id" : "connections/73871",
"_from" : "places/London",
"_to" : "places/Birmingham",
"_rev" : "_jJdpSSy--_",
"travelTime" : 2.5
},
{
"_key" : "73873",
"_id" : "connections/73873",
"_from" : "places/Leuchars",
"_to" : "places/StAndrews",
"_rev" : "_jJdpSSy--A",
"travelTime" : 0.2
},
{
"_key" : "73875",
"_id" : "connections/73875",
"_from" : "places/StAndrews",
"_to" : "places/Leuchars",
"_rev" : "_jJdpSS2---",
"travelTime" : 0.2
},
{
"_key" : "73877",
"_id" : "connections/73877",
"_from" : "places/York",
"_to" : "places/London",
"_rev" : "_jJdpSS2--_",
"travelTime" : 1.8
},
{
"_key" : "73879",
"_id" : "connections/73879",
"_from" : "places/London",
"_to" : "places/York",
"_rev" : "_jJdpSS2--A",
"travelTime" : 2
},
{
"_key" : "73881",
"_id" : "connections/73881",
"_from" : "places/London",
"_to" : "places/Brussels",
"_rev" : "_jJdpSS2--B",
"travelTime" : 2.5
},
{
"_key" : "73883",
"_id" : "connections/73883",
"_from" : "places/Brussels",
"_to" : "places/London",
"_rev" : "_jJdpSS2--C",
"travelTime" : 3.5
},
{
"_key" : "73885",
"_id" : "connections/73885",
"_from" : "places/Brussels",
"_to" : "places/Cologne",
"_rev" : "_jJdpSS2--D",
"travelTime" : 2
},
{
"_key" : "73887",
"_id" : "connections/73887",
"_from" : "places/Cologne",
"_to" : "places/Brussels",
"_rev" : "_jJdpSS6---",
"travelTime" : 1.5
},
{
"_key" : "73889",
"_id" : "connections/73889",
"_from" : "places/Toronto",
"_to" : "places/Winnipeg",
"_rev" : "_jJdpSS6--_",
"travelTime" : 36
},
{
"_key" : "73891",
"_id" : "connections/73891",
"_from" : "places/Winnipeg",
"_to" : "places/Toronto",
"_rev" : "_jJdpSS6--A",
"travelTime" : 35
},
{
"_key" : "73893",
"_id" : "connections/73893",
"_from" : "places/Winnipeg",
"_to" : "places/Saskatoon",
"_rev" : "_jJdpSS6--B",
"travelTime" : 12
},
{
"_key" : "73895",
"_id" : "connections/73895",
"_from" : "places/Saskatoon",
"_to" : "places/Winnipeg",
"_rev" : "_jJdpSS6--C",
"travelTime" : 5
},
{
"_key" : "73897",
"_id" : "connections/73897",
"_from" : "places/Saskatoon",
"_to" : "places/Edmonton",
"_rev" : "_jJdpST----",
"travelTime" : 12
},
{
"_key" : "73899",
"_id" : "connections/73899",
"_from" : "places/Edmonton",
"_to" : "places/Saskatoon",
"_rev" : "_jJdpST---_",
"travelTime" : 17
},
{
"_key" : "73901",
"_id" : "connections/73901",
"_from" : "places/Edmonton",
"_to" : "places/Jasper",
"_rev" : "_jJdpST---A",
"travelTime" : 6
},
{
"_key" : "73903",
"_id" : "connections/73903",
"_from" : "places/Jasper",
"_to" : "places/Edmonton",
"_rev" : "_jJdpST---B",
"travelTime" : 5
},
{
"_key" : "73905",
"_id" : "connections/73905",
"_from" : "places/Jasper",
"_to" : "places/Vancouver",
"_rev" : "_jJdpST---C",
"travelTime" : 12
},
{
"_key" : "73907",
"_id" : "connections/73907",
"_from" : "places/Vancouver",
"_to" : "places/Jasper",
"_rev" : "_jJdpSTC---",
"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" : "_jJdpSVG---"
},
{
"_key" : "B",
"_id" : "mps_verts/B",
"_rev" : "_jJdpSVG--_"
},
{
"_key" : "C",
"_id" : "mps_verts/C",
"_rev" : "_jJdpSVG--A"
},
{
"_key" : "D",
"_id" : "mps_verts/D",
"_rev" : "_jJdpSVG--B"
},
{
"_key" : "E",
"_id" : "mps_verts/E",
"_rev" : "_jJdpSVK---"
},
{
"_key" : "F",
"_id" : "mps_verts/F",
"_rev" : "_jJdpSVK--_"
}
]
[
{
"_key" : "73961",
"_id" : "mps_edges/73961",
"_from" : "mps_verts/A",
"_to" : "mps_verts/B",
"_rev" : "_jJdpSVK--A",
"vertex" : "A"
},
{
"_key" : "73963",
"_id" : "mps_edges/73963",
"_from" : "mps_verts/A",
"_to" : "mps_verts/E",
"_rev" : "_jJdpSVK--B",
"vertex" : "A"
},
{
"_key" : "73965",
"_id" : "mps_edges/73965",
"_from" : "mps_verts/A",
"_to" : "mps_verts/D",
"_rev" : "_jJdpSVK--C",
"vertex" : "A"
},
{
"_key" : "73967",
"_id" : "mps_edges/73967",
"_from" : "mps_verts/B",
"_to" : "mps_verts/C",
"_rev" : "_jJdpSVO---",
"vertex" : "B"
},
{
"_key" : "73969",
"_id" : "mps_edges/73969",
"_from" : "mps_verts/D",
"_to" : "mps_verts/C",
"_rev" : "_jJdpSVO--_",
"vertex" : "D"
},
{
"_key" : "73971",
"_id" : "mps_edges/73971",
"_from" : "mps_verts/E",
"_to" : "mps_verts/F",
"_rev" : "_jJdpSVO--A",
"vertex" : "E"
},
{
"_key" : "73973",
"_id" : "mps_edges/73973",
"_from" : "mps_verts/F",
"_to" : "mps_verts/C",
"_rev" : "_jJdpSVO--B",
"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" : "_jJdpSWO---",
"name" : "World",
"type" : "root"
},
{
"_key" : "continent-africa",
"_id" : "worldVertices/continent-africa",
"_rev" : "_jJdpSWO--_",
"name" : "Africa",
"type" : "continent"
},
{
"_key" : "continent-asia",
"_id" : "worldVertices/continent-asia",
"_rev" : "_jJdpSWO--A",
"name" : "Asia",
"type" : "continent"
},
{
"_key" : "continent-australia",
"_id" : "worldVertices/continent-australia",
"_rev" : "_jJdpSWO--B",
"name" : "Australia",
"type" : "continent"
},
{
"_key" : "continent-europe",
"_id" : "worldVertices/continent-europe",
"_rev" : "_jJdpSWS---",
"name" : "Europe",
"type" : "continent"
},
{
"_key" : "continent-north-america",
"_id" : "worldVertices/continent-north-america",
"_rev" : "_jJdpSWS--_",
"name" : "North America",
"type" : "continent"
},
{
"_key" : "continent-south-america",
"_id" : "worldVertices/continent-south-america",
"_rev" : "_jJdpSWS--A",
"name" : "South America",
"type" : "continent"
},
{
"_key" : "country-afghanistan",
"_id" : "worldVertices/country-afghanistan",
"_rev" : "_jJdpSWS--B",
"name" : "Afghanistan",
"type" : "country",
"code" : "AFG"
},
{
"_key" : "country-albania",
"_id" : "worldVertices/country-albania",
"_rev" : "_jJdpSWS--C",
"name" : "Albania",
"type" : "country",
"code" : "ALB"
},
{
"_key" : "country-algeria",
"_id" : "worldVertices/country-algeria",
"_rev" : "_jJdpSWS--D",
"name" : "Algeria",
"type" : "country",
"code" : "DZA"
},
{
"_key" : "country-andorra",
"_id" : "worldVertices/country-andorra",
"_rev" : "_jJdpSWW---",
"name" : "Andorra",
"type" : "country",
"code" : "AND"
},
{
"_key" : "country-angola",
"_id" : "worldVertices/country-angola",
"_rev" : "_jJdpSWW--_",
"name" : "Angola",
"type" : "country",
"code" : "AGO"
},
{
"_key" : "country-antigua-and-barbuda",
"_id" : "worldVertices/country-antigua-and-barbuda",
"_rev" : "_jJdpSWW--A",
"name" : "Antigua and Barbuda",
"type" : "country",
"code" : "ATG"
},
{
"_key" : "country-argentina",
"_id" : "worldVertices/country-argentina",
"_rev" : "_jJdpSWW--B",
"name" : "Argentina",
"type" : "country",
"code" : "ARG"
},
{
"_key" : "country-australia",
"_id" : "worldVertices/country-australia",
"_rev" : "_jJdpSWW--C",
"name" : "Australia",
"type" : "country",
"code" : "AUS"
},
{
"_key" : "country-austria",
"_id" : "worldVertices/country-austria",
"_rev" : "_jJdpSWW--D",
"name" : "Austria",
"type" : "country",
"code" : "AUT"
},
{
"_key" : "country-bahamas",
"_id" : "worldVertices/country-bahamas",
"_rev" : "_jJdpSWa---",
"name" : "Bahamas",
"type" : "country",
"code" : "BHS"
},
{
"_key" : "country-bahrain",
"_id" : "worldVertices/country-bahrain",
"_rev" : "_jJdpSWa--_",
"name" : "Bahrain",
"type" : "country",
"code" : "BHR"
},
{
"_key" : "country-bangladesh",
"_id" : "worldVertices/country-bangladesh",
"_rev" : "_jJdpSWa--A",
"name" : "Bangladesh",
"type" : "country",
"code" : "BGD"
},
{
"_key" : "country-barbados",
"_id" : "worldVertices/country-barbados",
"_rev" : "_jJdpSWa--B",
"name" : "Barbados",
"type" : "country",
"code" : "BRB"
},
{
"_key" : "country-belgium",
"_id" : "worldVertices/country-belgium",
"_rev" : "_jJdpSWa--C",
"name" : "Belgium",
"type" : "country",
"code" : "BEL"
},
{
"_key" : "country-bhutan",
"_id" : "worldVertices/country-bhutan",
"_rev" : "_jJdpSWe---",
"name" : "Bhutan",
"type" : "country",
"code" : "BTN"
},
{
"_key" : "country-bolivia",
"_id" : "worldVertices/country-bolivia",
"_rev" : "_jJdpSWe--_",
"name" : "Bolivia",
"type" : "country",
"code" : "BOL"
},
{
"_key" : "country-bosnia-and-herzegovina",
"_id" : "worldVertices/country-bosnia-and-herzegovina",
"_rev" : "_jJdpSWe--A",
"name" : "Bosnia and Herzegovina",
"type" : "country",
"code" : "BIH"
},
{
"_key" : "country-botswana",
"_id" : "worldVertices/country-botswana",
"_rev" : "_jJdpSWe--B",
"name" : "Botswana",
"type" : "country",
"code" : "BWA"
},
{
"_key" : "country-brazil",
"_id" : "worldVertices/country-brazil",
"_rev" : "_jJdpSWe--C",
"name" : "Brazil",
"type" : "country",
"code" : "BRA"
},
{
"_key" : "country-brunei",
"_id" : "worldVertices/country-brunei",
"_rev" : "_jJdpSWi---",
"name" : "Brunei",
"type" : "country",
"code" : "BRN"
},
{
"_key" : "country-bulgaria",
"_id" : "worldVertices/country-bulgaria",
"_rev" : "_jJdpSWi--_",
"name" : "Bulgaria",
"type" : "country",
"code" : "BGR"
},
{
"_key" : "country-burkina-faso",
"_id" : "worldVertices/country-burkina-faso",
"_rev" : "_jJdpSWi--A",
"name" : "Burkina Faso",
"type" : "country",
"code" : "BFA"
},
{
"_key" : "country-burundi",
"_id" : "worldVertices/country-burundi",
"_rev" : "_jJdpSWi--B",
"name" : "Burundi",
"type" : "country",
"code" : "BDI"
},
{
"_key" : "country-cambodia",
"_id" : "worldVertices/country-cambodia",
"_rev" : "_jJdpSWm---",
"name" : "Cambodia",
"type" : "country",
"code" : "KHM"
},
{
"_key" : "country-cameroon",
"_id" : "worldVertices/country-cameroon",
"_rev" : "_jJdpSWm--_",
"name" : "Cameroon",
"type" : "country",
"code" : "CMR"
},
{
"_key" : "country-canada",
"_id" : "worldVertices/country-canada",
"_rev" : "_jJdpSWm--A",
"name" : "Canada",
"type" : "country",
"code" : "CAN"
},
{
"_key" : "country-chad",
"_id" : "worldVertices/country-chad",
"_rev" : "_jJdpSWm--B",
"name" : "Chad",
"type" : "country",
"code" : "TCD"
},
{
"_key" : "country-chile",
"_id" : "worldVertices/country-chile",
"_rev" : "_jJdpSWm--C",
"name" : "Chile",
"type" : "country",
"code" : "CHL"
},
{
"_key" : "country-colombia",
"_id" : "worldVertices/country-colombia",
"_rev" : "_jJdpSWq---",
"name" : "Colombia",
"type" : "country",
"code" : "COL"
},
{
"_key" : "country-cote-d-ivoire",
"_id" : "worldVertices/country-cote-d-ivoire",
"_rev" : "_jJdpSWq--_",
"name" : "Cote d'Ivoire",
"type" : "country",
"code" : "CIV"
},
{
"_key" : "country-croatia",
"_id" : "worldVertices/country-croatia",
"_rev" : "_jJdpSWq--A",
"name" : "Croatia",
"type" : "country",
"code" : "HRV"
},
{
"_key" : "country-czech-republic",
"_id" : "worldVertices/country-czech-republic",
"_rev" : "_jJdpSWq--B",
"name" : "Czech Republic",
"type" : "country",
"code" : "CZE"
},
{
"_key" : "country-denmark",
"_id" : "worldVertices/country-denmark",
"_rev" : "_jJdpSWq--C",
"name" : "Denmark",
"type" : "country",
"code" : "DNK"
},
{
"_key" : "country-ecuador",
"_id" : "worldVertices/country-ecuador",
"_rev" : "_jJdpSWu---",
"name" : "Ecuador",
"type" : "country",
"code" : "ECU"
},
{
"_key" : "country-egypt",
"_id" : "worldVertices/country-egypt",
"_rev" : "_jJdpSWu--_",
"name" : "Egypt",
"type" : "country",
"code" : "EGY"
},
{
"_key" : "country-eritrea",
"_id" : "worldVertices/country-eritrea",
"_rev" : "_jJdpSWu--A",
"name" : "Eritrea",
"type" : "country",
"code" : "ERI"
},
{
"_key" : "country-finland",
"_id" : "worldVertices/country-finland",
"_rev" : "_jJdpSWu--B",
"name" : "Finland",
"type" : "country",
"code" : "FIN"
},
{
"_key" : "country-france",
"_id" : "worldVertices/country-france",
"_rev" : "_jJdpSWu--C",
"name" : "France",
"type" : "country",
"code" : "FRA"
},
{
"_key" : "country-germany",
"_id" : "worldVertices/country-germany",
"_rev" : "_jJdpSWu--D",
"name" : "Germany",
"type" : "country",
"code" : "DEU"
},
{
"_key" : "country-people-s-republic-of-china",
"_id" : "worldVertices/country-people-s-republic-of-china",
"_rev" : "_jJdpSWy---",
"name" : "People's Republic of China",
"type" : "country",
"code" : "CHN"
},
{
"_key" : "capital-algiers",
"_id" : "worldVertices/capital-algiers",
"_rev" : "_jJdpSWy--_",
"name" : "Algiers",
"type" : "capital"
},
{
"_key" : "capital-andorra-la-vella",
"_id" : "worldVertices/capital-andorra-la-vella",
"_rev" : "_jJdpSWy--A",
"name" : "Andorra la Vella",
"type" : "capital"
},
{
"_key" : "capital-asmara",
"_id" : "worldVertices/capital-asmara",
"_rev" : "_jJdpSWy--B",
"name" : "Asmara",
"type" : "capital"
},
{
"_key" : "capital-bandar-seri-begawan",
"_id" : "worldVertices/capital-bandar-seri-begawan",
"_rev" : "_jJdpSWy--C",
"name" : "Bandar Seri Begawan",
"type" : "capital"
},
{
"_key" : "capital-beijing",
"_id" : "worldVertices/capital-beijing",
"_rev" : "_jJdpSWy--D",
"name" : "Beijing",
"type" : "capital"
},
{
"_key" : "capital-berlin",
"_id" : "worldVertices/capital-berlin",
"_rev" : "_jJdpSW2---",
"name" : "Berlin",
"type" : "capital"
},
{
"_key" : "capital-bogota",
"_id" : "worldVertices/capital-bogota",
"_rev" : "_jJdpSW2--_",
"name" : "Bogota",
"type" : "capital"
},
{
"_key" : "capital-brasilia",
"_id" : "worldVertices/capital-brasilia",
"_rev" : "_jJdpSW2--A",
"name" : "Brasilia",
"type" : "capital"
},
{
"_key" : "capital-bridgetown",
"_id" : "worldVertices/capital-bridgetown",
"_rev" : "_jJdpSW2--B",
"name" : "Bridgetown",
"type" : "capital"
},
{
"_key" : "capital-brussels",
"_id" : "worldVertices/capital-brussels",
"_rev" : "_jJdpSW2--C",
"name" : "Brussels",
"type" : "capital"
},
{
"_key" : "capital-buenos-aires",
"_id" : "worldVertices/capital-buenos-aires",
"_rev" : "_jJdpSW6---",
"name" : "Buenos Aires",
"type" : "capital"
},
{
"_key" : "capital-bujumbura",
"_id" : "worldVertices/capital-bujumbura",
"_rev" : "_jJdpSW6--_",
"name" : "Bujumbura",
"type" : "capital"
},
{
"_key" : "capital-cairo",
"_id" : "worldVertices/capital-cairo",
"_rev" : "_jJdpSXC---",
"name" : "Cairo",
"type" : "capital"
},
{
"_key" : "capital-canberra",
"_id" : "worldVertices/capital-canberra",
"_rev" : "_jJdpSXC--_",
"name" : "Canberra",
"type" : "capital"
},
{
"_key" : "capital-copenhagen",
"_id" : "worldVertices/capital-copenhagen",
"_rev" : "_jJdpSXG---",
"name" : "Copenhagen",
"type" : "capital"
},
{
"_key" : "capital-dhaka",
"_id" : "worldVertices/capital-dhaka",
"_rev" : "_jJdpSXG--_",
"name" : "Dhaka",
"type" : "capital"
},
{
"_key" : "capital-gaborone",
"_id" : "worldVertices/capital-gaborone",
"_rev" : "_jJdpSXG--A",
"name" : "Gaborone",
"type" : "capital"
},
{
"_key" : "capital-helsinki",
"_id" : "worldVertices/capital-helsinki",
"_rev" : "_jJdpSXG--B",
"name" : "Helsinki",
"type" : "capital"
},
{
"_key" : "capital-kabul",
"_id" : "worldVertices/capital-kabul",
"_rev" : "_jJdpSXG--C",
"name" : "Kabul",
"type" : "capital"
},
{
"_key" : "capital-la-paz",
"_id" : "worldVertices/capital-la-paz",
"_rev" : "_jJdpSXG--D",
"name" : "La Paz",
"type" : "capital"
},
{
"_key" : "capital-luanda",
"_id" : "worldVertices/capital-luanda",
"_rev" : "_jJdpSXK---",
"name" : "Luanda",
"type" : "capital"
},
{
"_key" : "capital-manama",
"_id" : "worldVertices/capital-manama",
"_rev" : "_jJdpSXK--_",
"name" : "Manama",
"type" : "capital"
},
{
"_key" : "capital-nassau",
"_id" : "worldVertices/capital-nassau",
"_rev" : "_jJdpSXK--A",
"name" : "Nassau",
"type" : "capital"
},
{
"_key" : "capital-n-djamena",
"_id" : "worldVertices/capital-n-djamena",
"_rev" : "_jJdpSXK--B",
"name" : "N'Djamena",
"type" : "capital"
},
{
"_key" : "capital-ottawa",
"_id" : "worldVertices/capital-ottawa",
"_rev" : "_jJdpSXK--C",
"name" : "Ottawa",
"type" : "capital"
},
{
"_key" : "capital-ouagadougou",
"_id" : "worldVertices/capital-ouagadougou",
"_rev" : "_jJdpSXO---",
"name" : "Ouagadougou",
"type" : "capital"
},
{
"_key" : "capital-paris",
"_id" : "worldVertices/capital-paris",
"_rev" : "_jJdpSXO--_",
"name" : "Paris",
"type" : "capital"
},
{
"_key" : "capital-phnom-penh",
"_id" : "worldVertices/capital-phnom-penh",
"_rev" : "_jJdpSXO--A",
"name" : "Phnom Penh",
"type" : "capital"
},
{
"_key" : "capital-prague",
"_id" : "worldVertices/capital-prague",
"_rev" : "_jJdpSXO--B",
"name" : "Prague",
"type" : "capital"
},
{
"_key" : "capital-quito",
"_id" : "worldVertices/capital-quito",
"_rev" : "_jJdpSXO--C",
"name" : "Quito",
"type" : "capital"
},
{
"_key" : "capital-saint-john-s",
"_id" : "worldVertices/capital-saint-john-s",
"_rev" : "_jJdpSXO--D",
"name" : "Saint John's",
"type" : "capital"
},
{
"_key" : "capital-santiago",
"_id" : "worldVertices/capital-santiago",
"_rev" : "_jJdpSXS---",
"name" : "Santiago",
"type" : "capital"
},
{
"_key" : "capital-sarajevo",
"_id" : "worldVertices/capital-sarajevo",
"_rev" : "_jJdpSXS--_",
"name" : "Sarajevo",
"type" : "capital"
},
{
"_key" : "capital-sofia",
"_id" : "worldVertices/capital-sofia",
"_rev" : "_jJdpSXS--A",
"name" : "Sofia",
"type" : "capital"
},
{
"_key" : "capital-thimphu",
"_id" : "worldVertices/capital-thimphu",
"_rev" : "_jJdpSXS--B",
"name" : "Thimphu",
"type" : "capital"
},
{
"_key" : "capital-tirana",
"_id" : "worldVertices/capital-tirana",
"_rev" : "_jJdpSXS--C",
"name" : "Tirana",
"type" : "capital"
},
{
"_key" : "capital-vienna",
"_id" : "worldVertices/capital-vienna",
"_rev" : "_jJdpSXS--D",
"name" : "Vienna",
"type" : "capital"
},
{
"_key" : "capital-yamoussoukro",
"_id" : "worldVertices/capital-yamoussoukro",
"_rev" : "_jJdpSXW---",
"name" : "Yamoussoukro",
"type" : "capital"
},
{
"_key" : "capital-yaounde",
"_id" : "worldVertices/capital-yaounde",
"_rev" : "_jJdpSXW--_",
"name" : "Yaounde",
"type" : "capital"
},
{
"_key" : "capital-zagreb",
"_id" : "worldVertices/capital-zagreb",
"_rev" : "_jJdpSXW--A",
"name" : "Zagreb",
"type" : "capital"
}
]
[
{
"_key" : "74108",
"_id" : "worldEdges/74108",
"_from" : "worldVertices/continent-africa",
"_to" : "worldVertices/world",
"_rev" : "_jJdpSXW--B",
"type" : "is-in"
},
{
"_key" : "74110",
"_id" : "worldEdges/74110",
"_from" : "worldVertices/continent-asia",
"_to" : "worldVertices/world",
"_rev" : "_jJdpSXW--C",
"type" : "is-in"
},
{
"_key" : "74112",
"_id" : "worldEdges/74112",
"_from" : "worldVertices/continent-australia",
"_to" : "worldVertices/world",
"_rev" : "_jJdpSXa---",
"type" : "is-in"
},
{
"_key" : "74114",
"_id" : "worldEdges/74114",
"_from" : "worldVertices/continent-europe",
"_to" : "worldVertices/world",
"_rev" : "_jJdpSXa--_",
"type" : "is-in"
},
{
"_key" : "74116",
"_id" : "worldEdges/74116",
"_from" : "worldVertices/continent-north-america",
"_to" : "worldVertices/world",
"_rev" : "_jJdpSXa--A",
"type" : "is-in"
},
{
"_key" : "74118",
"_id" : "worldEdges/74118",
"_from" : "worldVertices/continent-south-america",
"_to" : "worldVertices/world",
"_rev" : "_jJdpSXa--B",
"type" : "is-in"
},
{
"_key" : "74120",
"_id" : "worldEdges/74120",
"_from" : "worldVertices/country-afghanistan",
"_to" : "worldVertices/continent-asia",
"_rev" : "_jJdpSXa--C",
"type" : "is-in"
},
{
"_key" : "74122",
"_id" : "worldEdges/74122",
"_from" : "worldVertices/country-albania",
"_to" : "worldVertices/continent-europe",
"_rev" : "_jJdpSXa--D",
"type" : "is-in"
},
{
"_key" : "74124",
"_id" : "worldEdges/74124",
"_from" : "worldVertices/country-algeria",
"_to" : "worldVertices/continent-africa",
"_rev" : "_jJdpSXe---",
"type" : "is-in"
},
{
"_key" : "74126",
"_id" : "worldEdges/74126",
"_from" : "worldVertices/country-andorra",
"_to" : "worldVertices/continent-europe",
"_rev" : "_jJdpSXe--_",
"type" : "is-in"
},
{
"_key" : "74128",
"_id" : "worldEdges/74128",
"_from" : "worldVertices/country-angola",
"_to" : "worldVertices/continent-africa",
"_rev" : "_jJdpSXe--A",
"type" : "is-in"
},
{
"_key" : "74130",
"_id" : "worldEdges/74130",
"_from" : "worldVertices/country-antigua-and-barbuda",
"_to" : "worldVertices/continent-north-america",
"_rev" : "_jJdpSXe--B",
"type" : "is-in"
},
{
"_key" : "74132",
"_id" : "worldEdges/74132",
"_from" : "worldVertices/country-argentina",
"_to" : "worldVertices/continent-south-america",
"_rev" : "_jJdpSXe--C",
"type" : "is-in"
},
{
"_key" : "74134",
"_id" : "worldEdges/74134",
"_from" : "worldVertices/country-australia",
"_to" : "worldVertices/continent-australia",
"_rev" : "_jJdpSXi---",
"type" : "is-in"
},
{
"_key" : "74136",
"_id" : "worldEdges/74136",
"_from" : "worldVertices/country-austria",
"_to" : "worldVertices/continent-europe",
"_rev" : "_jJdpSXi--_",
"type" : "is-in"
},
{
"_key" : "74138",
"_id" : "worldEdges/74138",
"_from" : "worldVertices/country-bahamas",
"_to" : "worldVertices/continent-north-america",
"_rev" : "_jJdpSXi--A",
"type" : "is-in"
},
{
"_key" : "74140",
"_id" : "worldEdges/74140",
"_from" : "worldVertices/country-bahrain",
"_to" : "worldVertices/continent-asia",
"_rev" : "_jJdpSXi--B",
"type" : "is-in"
},
{
"_key" : "74142",
"_id" : "worldEdges/74142",
"_from" : "worldVertices/country-bangladesh",
"_to" : "worldVertices/continent-asia",
"_rev" : "_jJdpSXi--C",
"type" : "is-in"
},
{
"_key" : "74144",
"_id" : "worldEdges/74144",
"_from" : "worldVertices/country-barbados",
"_to" : "worldVertices/continent-north-america",
"_rev" : "_jJdpSXi--D",
"type" : "is-in"
},
{
"_key" : "74146",
"_id" : "worldEdges/74146",
"_from" : "worldVertices/country-belgium",
"_to" : "worldVertices/continent-europe",
"_rev" : "_jJdpSXm---",
"type" : "is-in"
},
{
"_key" : "74148",
"_id" : "worldEdges/74148",
"_from" : "worldVertices/country-bhutan",
"_to" : "worldVertices/continent-asia",
"_rev" : "_jJdpSXm--_",
"type" : "is-in"
},
{
"_key" : "74150",
"_id" : "worldEdges/74150",
"_from" : "worldVertices/country-bolivia",
"_to" : "worldVertices/continent-south-america",
"_rev" : "_jJdpSXm--A",
"type" : "is-in"
},
{
"_key" : "74152",
"_id" : "worldEdges/74152",
"_from" : "worldVertices/country-bosnia-and-herzegovina",
"_to" : "worldVertices/continent-europe",
"_rev" : "_jJdpSXm--B",
"type" : "is-in"
},
{
"_key" : "74154",
"_id" : "worldEdges/74154",
"_from" : "worldVertices/country-botswana",
"_to" : "worldVertices/continent-africa",
"_rev" : "_jJdpSXm--C",
"type" : "is-in"
},
{
"_key" : "74156",
"_id" : "worldEdges/74156",
"_from" : "worldVertices/country-brazil",
"_to" : "worldVertices/continent-south-america",
"_rev" : "_jJdpSXq---",
"type" : "is-in"
},
{
"_key" : "74158",
"_id" : "worldEdges/74158",
"_from" : "worldVertices/country-brunei",
"_to" : "worldVertices/continent-asia",
"_rev" : "_jJdpSXq--_",
"type" : "is-in"
},
{
"_key" : "74160",
"_id" : "worldEdges/74160",
"_from" : "worldVertices/country-bulgaria",
"_to" : "worldVertices/continent-europe",
"_rev" : "_jJdpSXq--A",
"type" : "is-in"
},
{
"_key" : "74162",
"_id" : "worldEdges/74162",
"_from" : "worldVertices/country-burkina-faso",
"_to" : "worldVertices/continent-africa",
"_rev" : "_jJdpSXq--B",
"type" : "is-in"
},
{
"_key" : "74164",
"_id" : "worldEdges/74164",
"_from" : "worldVertices/country-burundi",
"_to" : "worldVertices/continent-africa",
"_rev" : "_jJdpSXq--C",
"type" : "is-in"
},
{
"_key" : "74166",
"_id" : "worldEdges/74166",
"_from" : "worldVertices/country-cambodia",
"_to" : "worldVertices/continent-asia",
"_rev" : "_jJdpSXu---",
"type" : "is-in"
},
{
"_key" : "74168",
"_id" : "worldEdges/74168",
"_from" : "worldVertices/country-cameroon",
"_to" : "worldVertices/continent-africa",
"_rev" : "_jJdpSXu--_",
"type" : "is-in"
},
{
"_key" : "74170",
"_id" : "worldEdges/74170",
"_from" : "worldVertices/country-canada",
"_to" : "worldVertices/continent-north-america",
"_rev" : "_jJdpSXu--A",
"type" : "is-in"
},
{
"_key" : "74172",
"_id" : "worldEdges/74172",
"_from" : "worldVertices/country-chad",
"_to" : "worldVertices/continent-africa",
"_rev" : "_jJdpSXu--B",
"type" : "is-in"
},
{
"_key" : "74174",
"_id" : "worldEdges/74174",
"_from" : "worldVertices/country-chile",
"_to" : "worldVertices/continent-south-america",
"_rev" : "_jJdpSXu--C",
"type" : "is-in"
},
{
"_key" : "74176",
"_id" : "worldEdges/74176",
"_from" : "worldVertices/country-colombia",
"_to" : "worldVertices/continent-south-america",
"_rev" : "_jJdpSXy---",
"type" : "is-in"
},
{
"_key" : "74178",
"_id" : "worldEdges/74178",
"_from" : "worldVertices/country-cote-d-ivoire",
"_to" : "worldVertices/continent-africa",
"_rev" : "_jJdpSXy--_",
"type" : "is-in"
},
{
"_key" : "74180",
"_id" : "worldEdges/74180",
"_from" : "worldVertices/country-croatia",
"_to" : "worldVertices/continent-europe",
"_rev" : "_jJdpSXy--A",
"type" : "is-in"
},
{
"_key" : "74182",
"_id" : "worldEdges/74182",
"_from" : "worldVertices/country-czech-republic",
"_to" : "worldVertices/continent-europe",
"_rev" : "_jJdpSXy--B",
"type" : "is-in"
},
{
"_key" : "74184",
"_id" : "worldEdges/74184",
"_from" : "worldVertices/country-denmark",
"_to" : "worldVertices/continent-europe",
"_rev" : "_jJdpSX2---",
"type" : "is-in"
},
{
"_key" : "74186",
"_id" : "worldEdges/74186",
"_from" : "worldVertices/country-ecuador",
"_to" : "worldVertices/continent-south-america",
"_rev" : "_jJdpSX2--_",
"type" : "is-in"
},
{
"_key" : "74188",
"_id" : "worldEdges/74188",
"_from" : "worldVertices/country-egypt",
"_to" : "worldVertices/continent-africa",
"_rev" : "_jJdpSX2--A",
"type" : "is-in"
},
{
"_key" : "74190",
"_id" : "worldEdges/74190",
"_from" : "worldVertices/country-eritrea",
"_to" : "worldVertices/continent-africa",
"_rev" : "_jJdpSX2--B",
"type" : "is-in"
},
{
"_key" : "74192",
"_id" : "worldEdges/74192",
"_from" : "worldVertices/country-finland",
"_to" : "worldVertices/continent-europe",
"_rev" : "_jJdpSX2--C",
"type" : "is-in"
},
{
"_key" : "74194",
"_id" : "worldEdges/74194",
"_from" : "worldVertices/country-france",
"_to" : "worldVertices/continent-europe",
"_rev" : "_jJdpSX2--D",
"type" : "is-in"
},
{
"_key" : "74196",
"_id" : "worldEdges/74196",
"_from" : "worldVertices/country-germany",
"_to" : "worldVertices/continent-europe",
"_rev" : "_jJdpSX6---",
"type" : "is-in"
},
{
"_key" : "74198",
"_id" : "worldEdges/74198",
"_from" : "worldVertices/country-people-s-republic-of-china",
"_to" : "worldVertices/continent-asia",
"_rev" : "_jJdpSX6--_",
"type" : "is-in"
},
{
"_key" : "74200",
"_id" : "worldEdges/74200",
"_from" : "worldVertices/capital-algiers",
"_to" : "worldVertices/country-algeria",
"_rev" : "_jJdpSX6--A",
"type" : "is-in"
},
{
"_key" : "74202",
"_id" : "worldEdges/74202",
"_from" : "worldVertices/capital-andorra-la-vella",
"_to" : "worldVertices/country-andorra",
"_rev" : "_jJdpSX6--B",
"type" : "is-in"
},
{
"_key" : "74204",
"_id" : "worldEdges/74204",
"_from" : "worldVertices/capital-asmara",
"_to" : "worldVertices/country-eritrea",
"_rev" : "_jJdpSX6--C",
"type" : "is-in"
},
{
"_key" : "74206",
"_id" : "worldEdges/74206",
"_from" : "worldVertices/capital-bandar-seri-begawan",
"_to" : "worldVertices/country-brunei",
"_rev" : "_jJdpSY----",
"type" : "is-in"
},
{
"_key" : "74208",
"_id" : "worldEdges/74208",
"_from" : "worldVertices/capital-beijing",
"_to" : "worldVertices/country-people-s-republic-of-china",
"_rev" : "_jJdpSY---_",
"type" : "is-in"
},
{
"_key" : "74210",
"_id" : "worldEdges/74210",
"_from" : "worldVertices/capital-berlin",
"_to" : "worldVertices/country-germany",
"_rev" : "_jJdpSY---A",
"type" : "is-in"
},
{
"_key" : "74212",
"_id" : "worldEdges/74212",
"_from" : "worldVertices/capital-bogota",
"_to" : "worldVertices/country-colombia",
"_rev" : "_jJdpSY---B",
"type" : "is-in"
},
{
"_key" : "74214",
"_id" : "worldEdges/74214",
"_from" : "worldVertices/capital-brasilia",
"_to" : "worldVertices/country-brazil",
"_rev" : "_jJdpSY---C",
"type" : "is-in"
},
{
"_key" : "74216",
"_id" : "worldEdges/74216",
"_from" : "worldVertices/capital-bridgetown",
"_to" : "worldVertices/country-barbados",
"_rev" : "_jJdpSYC---",
"type" : "is-in"
},
{
"_key" : "74218",
"_id" : "worldEdges/74218",
"_from" : "worldVertices/capital-brussels",
"_to" : "worldVertices/country-belgium",
"_rev" : "_jJdpSYC--_",
"type" : "is-in"
},
{
"_key" : "74220",
"_id" : "worldEdges/74220",
"_from" : "worldVertices/capital-buenos-aires",
"_to" : "worldVertices/country-argentina",
"_rev" : "_jJdpSYC--A",
"type" : "is-in"
},
{
"_key" : "74222",
"_id" : "worldEdges/74222",
"_from" : "worldVertices/capital-bujumbura",
"_to" : "worldVertices/country-burundi",
"_rev" : "_jJdpSYC--B",
"type" : "is-in"
},
{
"_key" : "74224",
"_id" : "worldEdges/74224",
"_from" : "worldVertices/capital-cairo",
"_to" : "worldVertices/country-egypt",
"_rev" : "_jJdpSYC--C",
"type" : "is-in"
},
{
"_key" : "74226",
"_id" : "worldEdges/74226",
"_from" : "worldVertices/capital-canberra",
"_to" : "worldVertices/country-australia",
"_rev" : "_jJdpSYC--D",
"type" : "is-in"
},
{
"_key" : "74228",
"_id" : "worldEdges/74228",
"_from" : "worldVertices/capital-copenhagen",
"_to" : "worldVertices/country-denmark",
"_rev" : "_jJdpSYC--E",
"type" : "is-in"
},
{
"_key" : "74230",
"_id" : "worldEdges/74230",
"_from" : "worldVertices/capital-dhaka",
"_to" : "worldVertices/country-bangladesh",
"_rev" : "_jJdpSYG---",
"type" : "is-in"
},
{
"_key" : "74232",
"_id" : "worldEdges/74232",
"_from" : "worldVertices/capital-gaborone",
"_to" : "worldVertices/country-botswana",
"_rev" : "_jJdpSYG--_",
"type" : "is-in"
},
{
"_key" : "74234",
"_id" : "worldEdges/74234",
"_from" : "worldVertices/capital-helsinki",
"_to" : "worldVertices/country-finland",
"_rev" : "_jJdpSYG--A",
"type" : "is-in"
},
{
"_key" : "74236",
"_id" : "worldEdges/74236",
"_from" : "worldVertices/capital-kabul",
"_to" : "worldVertices/country-afghanistan",
"_rev" : "_jJdpSYG--B",
"type" : "is-in"
},
{
"_key" : "74238",
"_id" : "worldEdges/74238",
"_from" : "worldVertices/capital-la-paz",
"_to" : "worldVertices/country-bolivia",
"_rev" : "_jJdpSYG--C",
"type" : "is-in"
},
{
"_key" : "74240",
"_id" : "worldEdges/74240",
"_from" : "worldVertices/capital-luanda",
"_to" : "worldVertices/country-angola",
"_rev" : "_jJdpSYG--D",
"type" : "is-in"
},
{
"_key" : "74242",
"_id" : "worldEdges/74242",
"_from" : "worldVertices/capital-manama",
"_to" : "worldVertices/country-bahrain",
"_rev" : "_jJdpSYK---",
"type" : "is-in"
},
{
"_key" : "74244",
"_id" : "worldEdges/74244",
"_from" : "worldVertices/capital-nassau",
"_to" : "worldVertices/country-bahamas",
"_rev" : "_jJdpSYK--_",
"type" : "is-in"
},
{
"_key" : "74246",
"_id" : "worldEdges/74246",
"_from" : "worldVertices/capital-n-djamena",
"_to" : "worldVertices/country-chad",
"_rev" : "_jJdpSYK--A",
"type" : "is-in"
},
{
"_key" : "74248",
"_id" : "worldEdges/74248",
"_from" : "worldVertices/capital-ottawa",
"_to" : "worldVertices/country-canada",
"_rev" : "_jJdpSYK--B",
"type" : "is-in"
},
{
"_key" : "74250",
"_id" : "worldEdges/74250",
"_from" : "worldVertices/capital-ouagadougou",
"_to" : "worldVertices/country-burkina-faso",
"_rev" : "_jJdpSYK--C",
"type" : "is-in"
},
{
"_key" : "74252",
"_id" : "worldEdges/74252",
"_from" : "worldVertices/capital-paris",
"_to" : "worldVertices/country-france",
"_rev" : "_jJdpSYK--D",
"type" : "is-in"
},
{
"_key" : "74254",
"_id" : "worldEdges/74254",
"_from" : "worldVertices/capital-phnom-penh",
"_to" : "worldVertices/country-cambodia",
"_rev" : "_jJdpSYO---",
"type" : "is-in"
},
{
"_key" : "74256",
"_id" : "worldEdges/74256",
"_from" : "worldVertices/capital-prague",
"_to" : "worldVertices/country-czech-republic",
"_rev" : "_jJdpSYO--_",
"type" : "is-in"
},
{
"_key" : "74258",
"_id" : "worldEdges/74258",
"_from" : "worldVertices/capital-quito",
"_to" : "worldVertices/country-ecuador",
"_rev" : "_jJdpSYO--A",
"type" : "is-in"
},
{
"_key" : "74260",
"_id" : "worldEdges/74260",
"_from" : "worldVertices/capital-saint-john-s",
"_to" : "worldVertices/country-antigua-and-barbuda",
"_rev" : "_jJdpSYO--B",
"type" : "is-in"
},
{
"_key" : "74262",
"_id" : "worldEdges/74262",
"_from" : "worldVertices/capital-santiago",
"_to" : "worldVertices/country-chile",
"_rev" : "_jJdpSYO--C",
"type" : "is-in"
},
{
"_key" : "74264",
"_id" : "worldEdges/74264",
"_from" : "worldVertices/capital-sarajevo",
"_to" : "worldVertices/country-bosnia-and-herzegovina",
"_rev" : "_jJdpSYO--D",
"type" : "is-in"
},
{
"_key" : "74266",
"_id" : "worldEdges/74266",
"_from" : "worldVertices/capital-sofia",
"_to" : "worldVertices/country-bulgaria",
"_rev" : "_jJdpSYO--E",
"type" : "is-in"
},
{
"_key" : "74268",
"_id" : "worldEdges/74268",
"_from" : "worldVertices/capital-thimphu",
"_to" : "worldVertices/country-bhutan",
"_rev" : "_jJdpSYS---",
"type" : "is-in"
},
{
"_key" : "74270",
"_id" : "worldEdges/74270",
"_from" : "worldVertices/capital-tirana",
"_to" : "worldVertices/country-albania",
"_rev" : "_jJdpSYS--_",
"type" : "is-in"
},
{
"_key" : "74272",
"_id" : "worldEdges/74272",
"_from" : "worldVertices/capital-vienna",
"_to" : "worldVertices/country-austria",
"_rev" : "_jJdpSYS--A",
"type" : "is-in"
},
{
"_key" : "74274",
"_id" : "worldEdges/74274",
"_from" : "worldVertices/capital-yamoussoukro",
"_to" : "worldVertices/country-cote-d-ivoire",
"_rev" : "_jJdpSYS--B",
"type" : "is-in"
},
{
"_key" : "74276",
"_id" : "worldEdges/74276",
"_from" : "worldVertices/capital-yaounde",
"_to" : "worldVertices/country-cameroon",
"_rev" : "_jJdpSYS--C",
"type" : "is-in"
},
{
"_key" : "74278",
"_id" : "worldEdges/74278",
"_from" : "worldVertices/capital-zagreb",
"_to" : "worldVertices/country-croatia",
"_rev" : "_jJdpSYS--D",
"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" : "_jJdpSdi---",
"name" : "Alice"
},
{
"_key" : "diana",
"_id" : "female/diana",
"_rev" : "_jJdpSdi--B",
"name" : "Diana"
}
]
[
{
"_key" : "bob",
"_id" : "male/bob",
"_rev" : "_jJdpSdi--_",
"name" : "Bob"
},
{
"_key" : "charly",
"_id" : "male/charly",
"_rev" : "_jJdpSdi--A",
"name" : "Charly"
}
]
[
{
"_key" : "74616",
"_id" : "relation/74616",
"_from" : "female/alice",
"_to" : "male/bob",
"_rev" : "_jJdpSdm---",
"type" : "married",
"vertex" : "alice"
},
{
"_key" : "74618",
"_id" : "relation/74618",
"_from" : "female/alice",
"_to" : "male/charly",
"_rev" : "_jJdpSdm--_",
"type" : "friend",
"vertex" : "alice"
},
{
"_key" : "74620",
"_id" : "relation/74620",
"_from" : "male/charly",
"_to" : "female/diana",
"_rev" : "_jJdpSdm--A",
"type" : "married",
"vertex" : "charly"
},
{
"_key" : "74622",
"_id" : "relation/74622",
"_from" : "male/bob",
"_to" : "female/diana",
"_rev" : "_jJdpSdm--B",
"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" : "_jJdpSeW--_",
"population" : 80000,
"isCapital" : false,
"geometry" : {
"type" : "Point",
"coordinates" : [
4.84,
45.76
]
}
},
{
"_key" : "Paris",
"_id" : "frenchCity/Paris",
"_rev" : "_jJdpSeW--A",
"population" : 4000000,
"isCapital" : true,
"geometry" : {
"type" : "Point",
"coordinates" : [
2.3508,
48.8567
]
}
}
]
[
{
"_key" : "Berlin",
"_id" : "germanCity/Berlin",
"_rev" : "_jJdpSeS---",
"population" : 3000000,
"isCapital" : true,
"geometry" : {
"type" : "Point",
"coordinates" : [
13.3833,
52.5167
]
}
},
{
"_key" : "Cologne",
"_id" : "germanCity/Cologne",
"_rev" : "_jJdpSeS--_",
"population" : 1000000,
"isCapital" : false,
"geometry" : {
"type" : "Point",
"coordinates" : [
6.9528,
50.9364
]
}
},
{
"_key" : "Hamburg",
"_id" : "germanCity/Hamburg",
"_rev" : "_jJdpSeW---",
"population" : 1000000,
"isCapital" : false,
"geometry" : {
"type" : "Point",
"coordinates" : [
10.0014,
53.5653
]
}
}
]
[
{
"_key" : "74708",
"_id" : "germanHighway/74708",
"_from" : "germanCity/Berlin",
"_to" : "germanCity/Cologne",
"_rev" : "_jJdpSea--_",
"distance" : 850
},
{
"_key" : "74710",
"_id" : "germanHighway/74710",
"_from" : "germanCity/Berlin",
"_to" : "germanCity/Hamburg",
"_rev" : "_jJdpSea--A",
"distance" : 400
},
{
"_key" : "74712",
"_id" : "germanHighway/74712",
"_from" : "germanCity/Hamburg",
"_to" : "germanCity/Cologne",
"_rev" : "_jJdpSea--B",
"distance" : 500
}
]
[
{
"_key" : "74714",
"_id" : "frenchHighway/74714",
"_from" : "frenchCity/Paris",
"_to" : "frenchCity/Lyon",
"_rev" : "_jJdpSee---",
"distance" : 550
}
]
[
{
"_key" : "74716",
"_id" : "internationalHighway/74716",
"_from" : "germanCity/Berlin",
"_to" : "frenchCity/Lyon",
"_rev" : "_jJdpSee--_",
"distance" : 1100
},
{
"_key" : "74718",
"_id" : "internationalHighway/74718",
"_from" : "germanCity/Berlin",
"_to" : "frenchCity/Paris",
"_rev" : "_jJdpSee--A",
"distance" : 1200
},
{
"_key" : "74720",
"_id" : "internationalHighway/74720",
"_from" : "germanCity/Hamburg",
"_to" : "frenchCity/Paris",
"_rev" : "_jJdpSee--B",
"distance" : 900
},
{
"_key" : "74722",
"_id" : "internationalHighway/74722",
"_from" : "germanCity/Hamburg",
"_to" : "frenchCity/Lyon",
"_rev" : "_jJdpSee--C",
"distance" : 1300
},
{
"_key" : "74724",
"_id" : "internationalHighway/74724",
"_from" : "germanCity/Cologne",
"_to" : "frenchCity/Lyon",
"_rev" : "_jJdpSee--D",
"distance" : 700
},
{
"_key" : "74726",
"_id" : "internationalHighway/74726",
"_from" : "germanCity/Cologne",
"_to" : "frenchCity/Paris",
"_rev" : "_jJdpSei---",
"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" : "_jJdpSgS---"
},
{
"_key" : "A2",
"_id" : "components/A2",
"_rev" : "_jJdpSgS--_"
},
{
"_key" : "A3",
"_id" : "components/A3",
"_rev" : "_jJdpSgS--A"
},
{
"_key" : "A4",
"_id" : "components/A4",
"_rev" : "_jJdpSgW---"
},
{
"_key" : "B1",
"_id" : "components/B1",
"_rev" : "_jJdpSgW--_"
},
{
"_key" : "B3",
"_id" : "components/B3",
"_rev" : "_jJdpSgW--A"
},
{
"_key" : "B2",
"_id" : "components/B2",
"_rev" : "_jJdpSgW--B"
},
{
"_key" : "B4",
"_id" : "components/B4",
"_rev" : "_jJdpSga---"
},
{
"_key" : "B6",
"_id" : "components/B6",
"_rev" : "_jJdpSge---"
},
{
"_key" : "B5",
"_id" : "components/B5",
"_rev" : "_jJdpSge--_"
},
{
"_key" : "B7",
"_id" : "components/B7",
"_rev" : "_jJdpSge--A"
},
{
"_key" : "B8",
"_id" : "components/B8",
"_rev" : "_jJdpSge--B"
},
{
"_key" : "B9",
"_id" : "components/B9",
"_rev" : "_jJdpSge--C"
},
{
"_key" : "B10",
"_id" : "components/B10",
"_rev" : "_jJdpSgi---"
},
{
"_key" : "B19",
"_id" : "components/B19",
"_rev" : "_jJdpSgi--_"
},
{
"_key" : "B11",
"_id" : "components/B11",
"_rev" : "_jJdpSgi--A"
},
{
"_key" : "B12",
"_id" : "components/B12",
"_rev" : "_jJdpSgi--B"
},
{
"_key" : "B13",
"_id" : "components/B13",
"_rev" : "_jJdpSgm---"
},
{
"_key" : "B20",
"_id" : "components/B20",
"_rev" : "_jJdpSgm--_"
},
{
"_key" : "B14",
"_id" : "components/B14",
"_rev" : "_jJdpSgm--A"
},
{
"_key" : "B15",
"_id" : "components/B15",
"_rev" : "_jJdpSgm--B"
},
{
"_key" : "B16",
"_id" : "components/B16",
"_rev" : "_jJdpSgm--C"
},
{
"_key" : "B17",
"_id" : "components/B17",
"_rev" : "_jJdpSgq---"
},
{
"_key" : "B18",
"_id" : "components/B18",
"_rev" : "_jJdpSgq--_"
},
{
"_key" : "B21",
"_id" : "components/B21",
"_rev" : "_jJdpSgq--A"
},
{
"_key" : "B22",
"_id" : "components/B22",
"_rev" : "_jJdpSgq--B"
},
{
"_key" : "C1",
"_id" : "components/C1",
"_rev" : "_jJdpSgq--C"
},
{
"_key" : "C2",
"_id" : "components/C2",
"_rev" : "_jJdpSgu---"
},
{
"_key" : "C3",
"_id" : "components/C3",
"_rev" : "_jJdpSgu--_"
},
{
"_key" : "C4",
"_id" : "components/C4",
"_rev" : "_jJdpSgu--A"
},
{
"_key" : "C5",
"_id" : "components/C5",
"_rev" : "_jJdpSgu--B"
},
{
"_key" : "C7",
"_id" : "components/C7",
"_rev" : "_jJdpSgu--C"
},
{
"_key" : "C6",
"_id" : "components/C6",
"_rev" : "_jJdpSgu--D"
},
{
"_key" : "C8",
"_id" : "components/C8",
"_rev" : "_jJdpSgy---"
},
{
"_key" : "C9",
"_id" : "components/C9",
"_rev" : "_jJdpSgy--_"
},
{
"_key" : "C10",
"_id" : "components/C10",
"_rev" : "_jJdpSgy--A"
}
]
[
{
"_key" : "74840",
"_id" : "connections/74840",
"_from" : "components/A1",
"_to" : "components/A2",
"_rev" : "_jJdpSgy--B"
},
{
"_key" : "74842",
"_id" : "connections/74842",
"_from" : "components/A2",
"_to" : "components/A3",
"_rev" : "_jJdpSgy--C"
},
{
"_key" : "74844",
"_id" : "connections/74844",
"_from" : "components/A3",
"_to" : "components/A4",
"_rev" : "_jJdpSg2---"
},
{
"_key" : "74846",
"_id" : "connections/74846",
"_from" : "components/A4",
"_to" : "components/A1",
"_rev" : "_jJdpSg2--_"
},
{
"_key" : "74848",
"_id" : "connections/74848",
"_from" : "components/B1",
"_to" : "components/B3",
"_rev" : "_jJdpSg2--A"
},
{
"_key" : "74850",
"_id" : "connections/74850",
"_from" : "components/B2",
"_to" : "components/B4",
"_rev" : "_jJdpSg2--B"
},
{
"_key" : "74852",
"_id" : "connections/74852",
"_from" : "components/B3",
"_to" : "components/B6",
"_rev" : "_jJdpSg6---"
},
{
"_key" : "74854",
"_id" : "connections/74854",
"_from" : "components/B4",
"_to" : "components/B3",
"_rev" : "_jJdpSg6--_"
},
{
"_key" : "74856",
"_id" : "connections/74856",
"_from" : "components/B4",
"_to" : "components/B5",
"_rev" : "_jJdpSg6--A"
},
{
"_key" : "74858",
"_id" : "connections/74858",
"_from" : "components/B6",
"_to" : "components/B7",
"_rev" : "_jJdpSg6--B"
},
{
"_key" : "74860",
"_id" : "connections/74860",
"_from" : "components/B7",
"_to" : "components/B8",
"_rev" : "_jJdpSh----"
},
{
"_key" : "74862",
"_id" : "connections/74862",
"_from" : "components/B7",
"_to" : "components/B9",
"_rev" : "_jJdpSh---_"
},
{
"_key" : "74864",
"_id" : "connections/74864",
"_from" : "components/B7",
"_to" : "components/B10",
"_rev" : "_jJdpSh---A"
},
{
"_key" : "74866",
"_id" : "connections/74866",
"_from" : "components/B7",
"_to" : "components/B19",
"_rev" : "_jJdpSh---B"
},
{
"_key" : "74868",
"_id" : "connections/74868",
"_from" : "components/B11",
"_to" : "components/B10",
"_rev" : "_jJdpSh---C"
},
{
"_key" : "74870",
"_id" : "connections/74870",
"_from" : "components/B12",
"_to" : "components/B11",
"_rev" : "_jJdpShC---"
},
{
"_key" : "74872",
"_id" : "connections/74872",
"_from" : "components/B13",
"_to" : "components/B12",
"_rev" : "_jJdpShC--_"
},
{
"_key" : "74874",
"_id" : "connections/74874",
"_from" : "components/B13",
"_to" : "components/B20",
"_rev" : "_jJdpShC--A"
},
{
"_key" : "74876",
"_id" : "connections/74876",
"_from" : "components/B14",
"_to" : "components/B13",
"_rev" : "_jJdpShC--B"
},
{
"_key" : "74878",
"_id" : "connections/74878",
"_from" : "components/B15",
"_to" : "components/B14",
"_rev" : "_jJdpShC--C"
},
{
"_key" : "74880",
"_id" : "connections/74880",
"_from" : "components/B15",
"_to" : "components/B16",
"_rev" : "_jJdpShG---"
},
{
"_key" : "74882",
"_id" : "connections/74882",
"_from" : "components/B17",
"_to" : "components/B15",
"_rev" : "_jJdpShG--_"
},
{
"_key" : "74884",
"_id" : "connections/74884",
"_from" : "components/B17",
"_to" : "components/B18",
"_rev" : "_jJdpShG--A"
},
{
"_key" : "74886",
"_id" : "connections/74886",
"_from" : "components/B19",
"_to" : "components/B17",
"_rev" : "_jJdpShG--B"
},
{
"_key" : "74888",
"_id" : "connections/74888",
"_from" : "components/B20",
"_to" : "components/B21",
"_rev" : "_jJdpShG--C"
},
{
"_key" : "74890",
"_id" : "connections/74890",
"_from" : "components/B20",
"_to" : "components/B22",
"_rev" : "_jJdpShK---"
},
{
"_key" : "74892",
"_id" : "connections/74892",
"_from" : "components/C1",
"_to" : "components/C2",
"_rev" : "_jJdpShK--_"
},
{
"_key" : "74894",
"_id" : "connections/74894",
"_from" : "components/C2",
"_to" : "components/C3",
"_rev" : "_jJdpShK--A"
},
{
"_key" : "74896",
"_id" : "connections/74896",
"_from" : "components/C3",
"_to" : "components/C4",
"_rev" : "_jJdpShK--B"
},
{
"_key" : "74898",
"_id" : "connections/74898",
"_from" : "components/C4",
"_to" : "components/C5",
"_rev" : "_jJdpShK--C"
},
{
"_key" : "74900",
"_id" : "connections/74900",
"_from" : "components/C4",
"_to" : "components/C7",
"_rev" : "_jJdpShO---"
},
{
"_key" : "74902",
"_id" : "connections/74902",
"_from" : "components/C5",
"_to" : "components/C6",
"_rev" : "_jJdpShO--_"
},
{
"_key" : "74904",
"_id" : "connections/74904",
"_from" : "components/C5",
"_to" : "components/C7",
"_rev" : "_jJdpShO--A"
},
{
"_key" : "74906",
"_id" : "connections/74906",
"_from" : "components/C7",
"_to" : "components/C8",
"_rev" : "_jJdpShO--B"
},
{
"_key" : "74908",
"_id" : "connections/74908",
"_from" : "components/C8",
"_to" : "components/C9",
"_rev" : "_jJdpShO--C"
},
{
"_key" : "74910",
"_id" : "connections/74910",
"_from" : "components/C8",
"_to" : "components/C10",
"_rev" : "_jJdpShO--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.