diff --git a/Documentation/Examples/generalGraphVertices2.generated b/Documentation/Examples/generalGraphVertices2.generated
index 30c2831e7c..e4fd380399 100644
--- a/Documentation/Examples/generalGraphVertices2.generated
+++ b/Documentation/Examples/generalGraphVertices2.generated
@@ -7,34 +7,34 @@ arangosh> db._query("FOR e IN GRAPH_VERTICES(""_id" : "germanCity/Berlin",
"_key" : "Berlin",
- "_rev" : "1909791442",
+ "_rev" : "1086104850",
"isCapital" : true,
- "population" : 3000000,
"loc" : [
52.5167,
13.3833
- ]
+ ],
+ "population" : 3000000
},
{
"_id" : "germanCity/Cologne",
"_key" : "Cologne",
- "_rev" : "1909988050",
+ "_rev" : "1086301458",
"isCapital" : false,
- "population" : 1000000,
"loc" : [
50.9364,
6.9528
- ]
+ ],
+ "population" : 1000000
},
{
"_id" : "germanCity/Hamburg",
"_key" : "Hamburg",
- "_rev" : "1910184658",
+ "_rev" : "1086498066",
"isCapital" : false,
- "population" : 1000000,
"loc" : [
53.5653,
10.0014
- ]
+ ],
+ "population" : 1000000
}
]
diff --git a/Documentation/Examples/generalGraphVerticesFiltered.generated b/Documentation/Examples/generalGraphVerticesFiltered.generated
index bad33dc509..3d0f0a2d7b 100644
--- a/Documentation/Examples/generalGraphVerticesFiltered.generated
+++ b/Documentation/Examples/generalGraphVerticesFiltered.generated
@@ -5,13 +5,13 @@ arangosh> graph._vertices([{name: "Alice"},
{
"_id" : "female/alice",
"_key" : "alice",
- "_rev" : "1915820754",
+ "_rev" : "1092592914",
"name" : "Alice"
},
{
"_id" : "male/bob",
"_key" : "bob",
- "_rev" : "1916148434",
+ "_rev" : "1092920594",
"name" : "Bob"
}
]
diff --git a/Documentation/Examples/generalGraphVerticesUnfiltered.generated b/Documentation/Examples/generalGraphVerticesUnfiltered.generated
index 389474cdf2..cc66f68cc3 100644
--- a/Documentation/Examples/generalGraphVerticesUnfiltered.generated
+++ b/Documentation/Examples/generalGraphVerticesUnfiltered.generated
@@ -5,25 +5,25 @@ arangosh> graph._vertices().toArray();
{
"_id" : "female/diana",
"_key" : "diana",
- "_rev" : "1920146130",
+ "_rev" : "1096918290",
"name" : "Diana"
},
{
"_id" : "female/alice",
"_key" : "alice",
- "_rev" : "1919425234",
+ "_rev" : "1096197394",
"name" : "Alice"
},
{
"_id" : "male/bob",
"_key" : "bob",
- "_rev" : "1919752914",
+ "_rev" : "1096525074",
"name" : "Bob"
},
{
"_id" : "male/charly",
"_key" : "charly",
- "_rev" : "1919949522",
+ "_rev" : "1096721682",
"name" : "Charly"
}
]
diff --git a/Documentation/Examples/general_graph__deleteEdgeDefinitionNoDrop.generated b/Documentation/Examples/general_graph__deleteEdgeDefinitionNoDrop.generated
index 8010ea8409..7ab7ac76ee 100644
--- a/Documentation/Examples/general_graph__deleteEdgeDefinitionNoDrop.generated
+++ b/Documentation/Examples/general_graph__deleteEdgeDefinitionNoDrop.generated
@@ -4,4 +4,4 @@ arangosh> var ed2 = graph_module._relation(
arangosh> var graph = graph_module._create("myGraph", [ed1, ed2]);
arangosh> graph._deleteEdgeDefinition("myEC1");
arangosh> db._collection("myEC1");
-[ArangoCollection 1926634194, "myEC1" (type edge, status loaded)]
+[ArangoCollection 1101243666, "myEC1" (type edge, status loaded)]
diff --git a/Documentation/Examples/geoIndexCreateForArrayAttribute1.generated b/Documentation/Examples/geoIndexCreateForArrayAttribute1.generated
index dd489af669..8370364f8e 100644
--- a/Documentation/Examples/geoIndexCreateForArrayAttribute1.generated
+++ b/Documentation/Examples/geoIndexCreateForArrayAttribute1.generated
@@ -1,15 +1,15 @@
arangosh> db.geo.ensureIndex({ type: "geo", fields: [ "loc" ] });
{
- "id" : "geo/2082282194",
- "type" : "geo1",
+ "constraint" : false,
"fields" : [
"loc"
],
"geoJson" : false,
- "constraint" : false,
- "unique" : false,
+ "id" : "geo/1117889810",
"ignoreNull" : true,
"sparse" : true,
+ "type" : "geo1",
+ "unique" : false,
"isNewlyCreated" : true,
"code" : 201
}
@@ -23,34 +23,34 @@ arangosh> db.geo.count();
arangosh> db.geo.near(0, 0).limit(3).toArray();
[
{
- "_id" : "geo/2151684818",
- "_key" : "2151684818",
- "_rev" : "2151684818",
- "name" : "Name/0/0",
+ "_id" : "geo/1187292434",
+ "_key" : "1187292434",
+ "_rev" : "1187292434",
"loc" : [
0,
0
- ]
+ ],
+ "name" : "Name/0/0"
},
{
- "_id" : "geo/2151881426",
- "_key" : "2151881426",
- "_rev" : "2151881426",
- "name" : "Name/0/10",
+ "_id" : "geo/1187489042",
+ "_key" : "1187489042",
+ "_rev" : "1187489042",
"loc" : [
0,
10
- ]
+ ],
+ "name" : "Name/0/10"
},
{
- "_id" : "geo/2144410322",
- "_key" : "2144410322",
- "_rev" : "2144410322",
- "name" : "Name/-10/0",
+ "_id" : "geo/1180017938",
+ "_key" : "1180017938",
+ "_rev" : "1180017938",
"loc" : [
-10,
0
- ]
+ ],
+ "name" : "Name/-10/0"
}
]
arangosh> db.geo.near(0, 0).count();
diff --git a/Documentation/Examples/geoIndexCreateForArrayAttribute2.generated b/Documentation/Examples/geoIndexCreateForArrayAttribute2.generated
index b2ea855bb4..ea1c2df88b 100644
--- a/Documentation/Examples/geoIndexCreateForArrayAttribute2.generated
+++ b/Documentation/Examples/geoIndexCreateForArrayAttribute2.generated
@@ -1,15 +1,15 @@
arangosh> db.geo2.ensureIndex({ type: "geo", fields: [ "location.latitude", "location.longitude" ] });
{
- "id" : "geo2/2221873874",
- "type" : "geo2",
+ "constraint" : false,
"fields" : [
"location.latitude",
"location.longitude"
],
- "constraint" : false,
- "unique" : false,
+ "id" : "geo2/1257481490",
"ignoreNull" : true,
"sparse" : true,
+ "type" : "geo2",
+ "unique" : false,
"isNewlyCreated" : true,
"code" : 201
}
@@ -21,9 +21,9 @@ arangosh> for (i = 0, 0).limit(3).toArray();
[
{
- "_id" : "geo2/2291276498",
- "_key" : "2291276498",
- "_rev" : "2291276498",
+ "_id" : "geo2/1326884114",
+ "_key" : "1326884114",
+ "_rev" : "1326884114",
"location" : {
"latitude" : 0,
"longitude" : 0
@@ -31,9 +31,9 @@ arangosh> db.geo2.near(0, "name" : "Name/0/0"
},
{
- "_id" : "geo2/2291473106",
- "_key" : "2291473106",
- "_rev" : "2291473106",
+ "_id" : "geo2/1327080722",
+ "_key" : "1327080722",
+ "_rev" : "1327080722",
"location" : {
"latitude" : 0,
"longitude" : 10
@@ -41,9 +41,9 @@ arangosh> db.geo2.near(0, "name" : "Name/0/10"
},
{
- "_id" : "geo2/2284002002",
- "_key" : "2284002002",
- "_rev" : "2284002002",
+ "_id" : "geo2/1319609618",
+ "_key" : "1319609618",
+ "_rev" : "1319609618",
"location" : {
"latitude" : -10,
"longitude" : 0
diff --git a/Documentation/Examples/graph_create_cities_sample.generated b/Documentation/Examples/graph_create_cities_sample.generated
index 14faf85c85..99f5583808 100644
--- a/Documentation/Examples/graph_create_cities_sample.generated
+++ b/Documentation/Examples/graph_create_cities_sample.generated
@@ -3,151 +3,151 @@ arangosh> var g = examples.loadGraph("_id" : "frenchCity/Paris",
+ "_key" : "Paris",
+ "_rev" : "1398908178",
"isCapital" : true,
- "population" : 4000000,
"loc" : [
48.856700000000004,
2.3508
],
- "_id" : "frenchCity/Paris",
- "_rev" : "2503088850",
- "_key" : "Paris"
+ "population" : 4000000
},
{
+ "_id" : "frenchCity/Lyon",
+ "_key" : "Lyon",
+ "_rev" : "1398711570",
"isCapital" : false,
- "population" : 80000,
"loc" : [
45.76,
4.84
],
- "_id" : "frenchCity/Lyon",
- "_rev" : "2502892242",
- "_key" : "Lyon"
+ "population" : 80000
}
]
arangosh> db.germanCity.toArray();
[
{
+ "_id" : "germanCity/Berlin",
+ "_key" : "Berlin",
+ "_rev" : "1397794066",
"isCapital" : true,
- "population" : 3000000,
"loc" : [
52.5167,
13.3833
],
- "_id" : "germanCity/Berlin",
- "_rev" : "2501974738",
- "_key" : "Berlin"
+ "population" : 3000000
},
{
+ "_id" : "germanCity/Cologne",
+ "_key" : "Cologne",
+ "_rev" : "1397990674",
"isCapital" : false,
- "population" : 1000000,
"loc" : [
50.9364,
6.9528
],
- "_id" : "germanCity/Cologne",
- "_rev" : "2502171346",
- "_key" : "Cologne"
+ "population" : 1000000
},
{
+ "_id" : "germanCity/Hamburg",
+ "_key" : "Hamburg",
+ "_rev" : "1398187282",
"isCapital" : false,
- "population" : 1000000,
"loc" : [
53.5653,
10.0014
],
- "_id" : "germanCity/Hamburg",
- "_rev" : "2502367954",
- "_key" : "Hamburg"
+ "population" : 1000000
}
]
arangosh> db.germanHighway.toArray();
[
{
- "distance" : 500,
- "_id" : "germanHighway/2504202962",
- "_rev" : "2504202962",
- "_key" : "2504202962",
+ "_from" : "germanCity/Berlin",
+ "_id" : "germanHighway/1399629074",
+ "_key" : "1399629074",
+ "_rev" : "1399629074",
+ "_to" : "germanCity/Cologne",
+ "distance" : 850
+ },
+ {
"_from" : "germanCity/Hamburg",
- "_to" : "germanCity/Cologne"
+ "_id" : "germanHighway/1400022290",
+ "_key" : "1400022290",
+ "_rev" : "1400022290",
+ "_to" : "germanCity/Cologne",
+ "distance" : 500
},
{
- "distance" : 400,
- "_id" : "germanHighway/2504006354",
- "_rev" : "2504006354",
- "_key" : "2504006354",
"_from" : "germanCity/Berlin",
- "_to" : "germanCity/Hamburg"
- },
- {
- "distance" : 850,
- "_id" : "germanHighway/2503809746",
- "_rev" : "2503809746",
- "_key" : "2503809746",
- "_from" : "germanCity/Berlin",
- "_to" : "germanCity/Cologne"
+ "_id" : "germanHighway/1399825682",
+ "_key" : "1399825682",
+ "_rev" : "1399825682",
+ "_to" : "germanCity/Hamburg",
+ "distance" : 400
}
]
arangosh> db.frenchHighway.toArray();
[
{
- "distance" : 550,
- "_id" : "frenchHighway/2504530642",
- "_rev" : "2504530642",
- "_key" : "2504530642",
"_from" : "frenchCity/Paris",
- "_to" : "frenchCity/Lyon"
+ "_id" : "frenchHighway/1400349970",
+ "_key" : "1400349970",
+ "_rev" : "1400349970",
+ "_to" : "frenchCity/Lyon",
+ "distance" : 550
}
]
arangosh> db.internationalHighway.toArray();
[
{
- "distance" : 1300,
- "_id" : "internationalHighway/2505448146",
- "_rev" : "2505448146",
- "_key" : "2505448146",
- "_from" : "germanCity/Hamburg",
- "_to" : "frenchCity/Lyon"
- },
- {
- "distance" : 1100,
- "_id" : "internationalHighway/2504858322",
- "_rev" : "2504858322",
- "_key" : "2504858322",
- "_from" : "germanCity/Berlin",
- "_to" : "frenchCity/Lyon"
- },
- {
- "distance" : 550,
- "_id" : "internationalHighway/2505841362",
- "_rev" : "2505841362",
- "_key" : "2505841362",
"_from" : "germanCity/Cologne",
- "_to" : "frenchCity/Paris"
+ "_id" : "internationalHighway/1401660690",
+ "_key" : "1401660690",
+ "_rev" : "1401660690",
+ "_to" : "frenchCity/Paris",
+ "distance" : 550
},
{
- "distance" : 900,
- "_id" : "internationalHighway/2505251538",
- "_rev" : "2505251538",
- "_key" : "2505251538",
"_from" : "germanCity/Hamburg",
- "_to" : "frenchCity/Paris"
+ "_id" : "internationalHighway/1401070866",
+ "_key" : "1401070866",
+ "_rev" : "1401070866",
+ "_to" : "frenchCity/Paris",
+ "distance" : 900
},
{
- "distance" : 1200,
- "_id" : "internationalHighway/2505054930",
- "_rev" : "2505054930",
- "_key" : "2505054930",
"_from" : "germanCity/Berlin",
- "_to" : "frenchCity/Paris"
+ "_id" : "internationalHighway/1400874258",
+ "_key" : "1400874258",
+ "_rev" : "1400874258",
+ "_to" : "frenchCity/Paris",
+ "distance" : 1200
+ },
+ {
+ "_from" : "germanCity/Berlin",
+ "_id" : "internationalHighway/1400677650",
+ "_key" : "1400677650",
+ "_rev" : "1400677650",
+ "_to" : "frenchCity/Lyon",
+ "distance" : 1100
+ },
+ {
+ "_from" : "germanCity/Hamburg",
+ "_id" : "internationalHighway/1401267474",
+ "_key" : "1401267474",
+ "_rev" : "1401267474",
+ "_to" : "frenchCity/Lyon",
+ "distance" : 1300
},
{
- "distance" : 700,
- "_id" : "internationalHighway/2505644754",
- "_rev" : "2505644754",
- "_key" : "2505644754",
"_from" : "germanCity/Cologne",
- "_to" : "frenchCity/Lyon"
+ "_id" : "internationalHighway/1401464082",
+ "_key" : "1401464082",
+ "_rev" : "1401464082",
+ "_to" : "frenchCity/Lyon",
+ "distance" : 700
}
]
arangosh> examples.dropGraph("routeplanner");
diff --git a/Documentation/Examples/graph_create_knows_sample.generated b/Documentation/Examples/graph_create_knows_sample.generated
index 91110f8ca1..a46d5015e6 100644
--- a/Documentation/Examples/graph_create_knows_sample.generated
+++ b/Documentation/Examples/graph_create_knows_sample.generated
@@ -3,72 +3,72 @@ arangosh> var g = examples.loadGraph("name" : "Charlie",
"_id" : "persons/charlie",
- "_rev" : "2508593874",
- "_key" : "charlie"
+ "_key" : "charlie",
+ "_rev" : "1404413202",
+ "name" : "Charlie"
},
{
- "name" : "Bob",
"_id" : "persons/bob",
- "_rev" : "2508331730",
- "_key" : "bob"
+ "_key" : "bob",
+ "_rev" : "1404151058",
+ "name" : "Bob"
},
{
- "name" : "Eve",
"_id" : "persons/eve",
- "_rev" : "2508987090",
- "_key" : "eve"
+ "_key" : "eve",
+ "_rev" : "1404806418",
+ "name" : "Eve"
},
{
- "name" : "Dave",
"_id" : "persons/dave",
- "_rev" : "2508790482",
- "_key" : "dave"
+ "_key" : "dave",
+ "_rev" : "1404609810",
+ "name" : "Dave"
},
{
- "name" : "Alice",
"_id" : "persons/alice",
- "_rev" : "2508135122",
- "_key" : "alice"
+ "_key" : "alice",
+ "_rev" : "1403954450",
+ "name" : "Alice"
}
]
arangosh> db.knows.toArray();
[
{
- "_id" : "knows/2509642450",
- "_rev" : "2509642450",
- "_key" : "2509642450",
- "_from" : "persons/bob",
- "_to" : "persons/dave"
- },
- {
- "_id" : "knows/2509839058",
- "_rev" : "2509839058",
- "_key" : "2509839058",
"_from" : "persons/eve",
+ "_id" : "knows/1405658386",
+ "_key" : "1405658386",
+ "_rev" : "1405658386",
"_to" : "persons/alice"
},
{
- "_id" : "knows/2510035666",
- "_rev" : "2510035666",
- "_key" : "2510035666",
- "_from" : "persons/eve",
+ "_from" : "persons/alice",
+ "_id" : "knows/1405068562",
+ "_key" : "1405068562",
+ "_rev" : "1405068562",
+ "_to" : "persons/bob"
+ },
+ {
+ "_from" : "persons/eve",
+ "_id" : "knows/1405854994",
+ "_key" : "1405854994",
+ "_rev" : "1405854994",
"_to" : "persons/bob"
},
{
- "_id" : "knows/2509445842",
- "_rev" : "2509445842",
- "_key" : "2509445842",
"_from" : "persons/bob",
+ "_id" : "knows/1405265170",
+ "_key" : "1405265170",
+ "_rev" : "1405265170",
"_to" : "persons/charlie"
},
{
- "_id" : "knows/2509249234",
- "_rev" : "2509249234",
- "_key" : "2509249234",
- "_from" : "persons/alice",
- "_to" : "persons/bob"
+ "_from" : "persons/bob",
+ "_id" : "knows/1405461778",
+ "_key" : "1405461778",
+ "_rev" : "1405461778",
+ "_to" : "persons/dave"
}
]
arangosh> examples.dropGraph("knows_graph");
diff --git a/Documentation/Examples/graph_create_social_sample.generated b/Documentation/Examples/graph_create_social_sample.generated
index 43ac1766a5..e037528b8d 100644
--- a/Documentation/Examples/graph_create_social_sample.generated
+++ b/Documentation/Examples/graph_create_social_sample.generated
@@ -3,66 +3,66 @@ arangosh> var graph = examples.loadGraph("name" : "Diana",
"_id" : "female/diana",
- "_rev" : "2512657106",
- "_key" : "diana"
+ "_key" : "diana",
+ "_rev" : "1408476434",
+ "name" : "Diana"
},
{
- "name" : "Alice",
"_id" : "female/alice",
- "_rev" : "2511936210",
- "_key" : "alice"
+ "_key" : "alice",
+ "_rev" : "1407755538",
+ "name" : "Alice"
}
]
arangosh> db.male.toArray()
[
{
- "name" : "Bob",
"_id" : "male/bob",
- "_rev" : "2512263890",
- "_key" : "bob"
+ "_key" : "bob",
+ "_rev" : "1408083218",
+ "name" : "Bob"
},
{
- "name" : "Charly",
"_id" : "male/charly",
- "_rev" : "2512460498",
- "_key" : "charly"
+ "_key" : "charly",
+ "_rev" : "1408279826",
+ "name" : "Charly"
}
]
arangosh> db.relation.toArray()
[
{
- "type" : "friend",
- "_id" : "relation/bobAndDiana",
- "_rev" : "2513640146",
- "_key" : "bobAndDiana",
"_from" : "male/bob",
- "_to" : "female/diana"
+ "_id" : "relation/bobAndDiana",
+ "_key" : "bobAndDiana",
+ "_rev" : "1409459474",
+ "_to" : "female/diana",
+ "type" : "friend"
},
{
- "type" : "married",
- "_id" : "relation/charlyAndDiana",
- "_rev" : "2513443538",
- "_key" : "charlyAndDiana",
"_from" : "male/charly",
- "_to" : "female/diana"
+ "_id" : "relation/charlyAndDiana",
+ "_key" : "charlyAndDiana",
+ "_rev" : "1409262866",
+ "_to" : "female/diana",
+ "type" : "married"
},
{
- "type" : "friend",
+ "_from" : "female/alice",
"_id" : "relation/aliceAndCharly",
- "_rev" : "2513246930",
"_key" : "aliceAndCharly",
- "_from" : "female/alice",
- "_to" : "male/charly"
+ "_rev" : "1409066258",
+ "_to" : "male/charly",
+ "type" : "friend"
},
{
- "type" : "married",
- "_id" : "relation/aliceAndBob",
- "_rev" : "2512984786",
- "_key" : "aliceAndBob",
"_from" : "female/alice",
- "_to" : "male/bob"
+ "_id" : "relation/aliceAndBob",
+ "_key" : "aliceAndBob",
+ "_rev" : "1408804114",
+ "_to" : "male/bob",
+ "type" : "married"
}
]
arangosh> examples.dropGraph("social");
diff --git a/Documentation/Examples/graph_create_traversal_sample.generated b/Documentation/Examples/graph_create_traversal_sample.generated
index d65041f0b0..a1f8f98fb3 100644
--- a/Documentation/Examples/graph_create_traversal_sample.generated
+++ b/Documentation/Examples/graph_create_traversal_sample.generated
@@ -3,173 +3,173 @@ arangosh> var g = examples.loadGraph("label" : "5",
"_id" : "circles/E",
- "_rev" : "2516327122",
- "_key" : "E"
+ "_key" : "E",
+ "_rev" : "1412146450",
+ "label" : "5"
},
{
- "label" : "6",
"_id" : "circles/F",
- "_rev" : "2516523730",
- "_key" : "F"
+ "_key" : "F",
+ "_rev" : "1412343058",
+ "label" : "6"
},
{
- "label" : "3",
"_id" : "circles/C",
- "_rev" : "2515933906",
- "_key" : "C"
+ "_key" : "C",
+ "_rev" : "1411753234",
+ "label" : "3"
},
{
- "label" : "11",
"_id" : "circles/K",
- "_rev" : "2517506770",
- "_key" : "K"
+ "_key" : "K",
+ "_rev" : "1413326098",
+ "label" : "11"
},
{
- "label" : "4",
"_id" : "circles/D",
- "_rev" : "2516130514",
- "_key" : "D"
+ "_key" : "D",
+ "_rev" : "1411949842",
+ "label" : "4"
},
{
- "label" : "9",
"_id" : "circles/I",
- "_rev" : "2517113554",
- "_key" : "I"
+ "_key" : "I",
+ "_rev" : "1412932882",
+ "label" : "9"
},
{
- "label" : "1",
"_id" : "circles/A",
- "_rev" : "2515540690",
- "_key" : "A"
+ "_key" : "A",
+ "_rev" : "1411360018",
+ "label" : "1"
},
{
- "label" : "2",
"_id" : "circles/B",
- "_rev" : "2515737298",
- "_key" : "B"
+ "_key" : "B",
+ "_rev" : "1411556626",
+ "label" : "2"
},
{
- "label" : "10",
"_id" : "circles/J",
- "_rev" : "2517310162",
- "_key" : "J"
+ "_key" : "J",
+ "_rev" : "1413129490",
+ "label" : "10"
},
{
- "label" : "7",
"_id" : "circles/G",
- "_rev" : "2516720338",
- "_key" : "G"
+ "_key" : "G",
+ "_rev" : "1412539666",
+ "label" : "7"
},
{
- "label" : "8",
"_id" : "circles/H",
- "_rev" : "2516916946",
- "_key" : "H"
+ "_key" : "H",
+ "_rev" : "1412736274",
+ "label" : "8"
}
]
arangosh> db.edges.toArray();
[
{
- "theFalse" : false,
- "theTruth" : true,
+ "_from" : "circles/B",
+ "_id" : "edges/1413981458",
+ "_key" : "1413981458",
+ "_rev" : "1413981458",
+ "_to" : "circles/C",
"label" : "left_blarg",
- "_id" : "edges/2518162130",
- "_rev" : "2518162130",
- "_key" : "2518162130",
- "_from" : "circles/B",
- "_to" : "circles/C"
+ "theFalse" : false,
+ "theTruth" : true
},
{
- "theFalse" : false,
- "theTruth" : true,
- "label" : "left_blub",
- "_id" : "edges/2518555346",
- "_rev" : "2518555346",
- "_key" : "2518555346",
- "_from" : "circles/B",
- "_to" : "circles/E"
- },
- {
- "theFalse" : false,
- "theTruth" : true,
- "label" : "right_blub",
- "_id" : "edges/2519341778",
- "_rev" : "2519341778",
- "_key" : "2519341778",
"_from" : "circles/H",
- "_to" : "circles/I"
+ "_id" : "edges/1415161106",
+ "_key" : "1415161106",
+ "_rev" : "1415161106",
+ "_to" : "circles/I",
+ "label" : "right_blub",
+ "theFalse" : false,
+ "theTruth" : true
},
{
- "theFalse" : false,
- "theTruth" : true,
- "label" : "right_zup",
- "_id" : "edges/2519734994",
- "_rev" : "2519734994",
- "_key" : "2519734994",
- "_from" : "circles/J",
- "_to" : "circles/K"
- },
- {
- "theFalse" : false,
- "theTruth" : true,
- "label" : "right_zip",
- "_id" : "edges/2519538386",
- "_rev" : "2519538386",
- "_key" : "2519538386",
- "_from" : "circles/G",
- "_to" : "circles/J"
- },
- {
- "theFalse" : false,
- "theTruth" : true,
- "label" : "left_bar",
- "_id" : "edges/2517965522",
- "_rev" : "2517965522",
- "_key" : "2517965522",
- "_from" : "circles/A",
- "_to" : "circles/B"
- },
- {
- "theFalse" : false,
- "theTruth" : true,
- "label" : "right_blob",
- "_id" : "edges/2519145170",
- "_rev" : "2519145170",
- "_key" : "2519145170",
- "_from" : "circles/G",
- "_to" : "circles/H"
- },
- {
- "theFalse" : false,
- "theTruth" : true,
- "label" : "left_schubi",
- "_id" : "edges/2518751954",
- "_rev" : "2518751954",
- "_key" : "2518751954",
- "_from" : "circles/E",
- "_to" : "circles/F"
- },
- {
- "theFalse" : false,
- "theTruth" : true,
- "label" : "right_foo",
- "_id" : "edges/2518948562",
- "_rev" : "2518948562",
- "_key" : "2518948562",
- "_from" : "circles/A",
- "_to" : "circles/G"
- },
- {
- "theFalse" : false,
- "theTruth" : true,
- "label" : "left_blorg",
- "_id" : "edges/2518358738",
- "_rev" : "2518358738",
- "_key" : "2518358738",
"_from" : "circles/C",
- "_to" : "circles/D"
+ "_id" : "edges/1414178066",
+ "_key" : "1414178066",
+ "_rev" : "1414178066",
+ "_to" : "circles/D",
+ "label" : "left_blorg",
+ "theFalse" : false,
+ "theTruth" : true
+ },
+ {
+ "_from" : "circles/E",
+ "_id" : "edges/1414571282",
+ "_key" : "1414571282",
+ "_rev" : "1414571282",
+ "_to" : "circles/F",
+ "label" : "left_schubi",
+ "theFalse" : false,
+ "theTruth" : true
+ },
+ {
+ "_from" : "circles/J",
+ "_id" : "edges/1415554322",
+ "_key" : "1415554322",
+ "_rev" : "1415554322",
+ "_to" : "circles/K",
+ "label" : "right_zup",
+ "theFalse" : false,
+ "theTruth" : true
+ },
+ {
+ "_from" : "circles/G",
+ "_id" : "edges/1415357714",
+ "_key" : "1415357714",
+ "_rev" : "1415357714",
+ "_to" : "circles/J",
+ "label" : "right_zip",
+ "theFalse" : false,
+ "theTruth" : true
+ },
+ {
+ "_from" : "circles/B",
+ "_id" : "edges/1414374674",
+ "_key" : "1414374674",
+ "_rev" : "1414374674",
+ "_to" : "circles/E",
+ "label" : "left_blub",
+ "theFalse" : false,
+ "theTruth" : true
+ },
+ {
+ "_from" : "circles/A",
+ "_id" : "edges/1413784850",
+ "_key" : "1413784850",
+ "_rev" : "1413784850",
+ "_to" : "circles/B",
+ "label" : "left_bar",
+ "theFalse" : false,
+ "theTruth" : true
+ },
+ {
+ "_from" : "circles/A",
+ "_id" : "edges/1414767890",
+ "_key" : "1414767890",
+ "_rev" : "1414767890",
+ "_to" : "circles/G",
+ "label" : "right_foo",
+ "theFalse" : false,
+ "theTruth" : true
+ },
+ {
+ "_from" : "circles/G",
+ "_id" : "edges/1414964498",
+ "_key" : "1414964498",
+ "_rev" : "1414964498",
+ "_to" : "circles/H",
+ "label" : "right_blob",
+ "theFalse" : false,
+ "theTruth" : true
}
]
arangosh> examples.dropGraph("traversalGraph");
diff --git a/Documentation/Examples/graph_create_world_sample.generated b/Documentation/Examples/graph_create_world_sample.generated
index b089841d76..b80f440084 100644
--- a/Documentation/Examples/graph_create_world_sample.generated
+++ b/Documentation/Examples/graph_create_world_sample.generated
@@ -3,1344 +3,1344 @@ arangosh> var g = examples.loadGraph("name" : "Andorra la Vella",
- "type" : "capital",
"_id" : "worldVertices/capital-andorra-la-vella",
- "_rev" : "2531531474",
- "_key" : "capital-andorra-la-vella"
+ "_key" : "capital-andorra-la-vella",
+ "_rev" : "1427416338",
+ "name" : "Andorra la Vella",
+ "type" : "capital"
},
{
+ "_id" : "worldVertices/country-bolivia",
+ "_key" : "country-bolivia",
+ "_rev" : "1422304530",
"code" : "BOL",
"name" : "Bolivia",
- "type" : "country",
- "_id" : "worldVertices/country-bolivia",
- "_rev" : "2526419666",
- "_key" : "country-bolivia"
+ "type" : "country"
},
{
+ "_id" : "worldVertices/country-finland",
+ "_key" : "country-finland",
+ "_rev" : "1426433298",
"code" : "FIN",
"name" : "Finland",
- "type" : "country",
- "_id" : "worldVertices/country-finland",
- "_rev" : "2530548434",
- "_key" : "country-finland"
+ "type" : "country"
},
{
- "name" : "Bandar Seri Begawan",
- "type" : "capital",
"_id" : "worldVertices/capital-bandar-seri-begawan",
- "_rev" : "2531924690",
- "_key" : "capital-bandar-seri-begawan"
+ "_key" : "capital-bandar-seri-begawan",
+ "_rev" : "1427809554",
+ "name" : "Bandar Seri Begawan",
+ "type" : "capital"
},
{
+ "_id" : "worldVertices/country-cameroon",
+ "_key" : "country-cameroon",
+ "_rev" : "1424074002",
"code" : "CMR",
"name" : "Cameroon",
- "type" : "country",
- "_id" : "worldVertices/country-cameroon",
- "_rev" : "2528189138",
- "_key" : "country-cameroon"
+ "type" : "country"
},
{
+ "_id" : "worldVertices/country-albania",
+ "_key" : "country-albania",
+ "_rev" : "1419486482",
"code" : "ALB",
"name" : "Albania",
- "type" : "country",
- "_id" : "worldVertices/country-albania",
- "_rev" : "2523601618",
- "_key" : "country-albania"
+ "type" : "country"
},
{
- "name" : "Canberra",
- "type" : "capital",
"_id" : "worldVertices/capital-canberra",
- "_rev" : "2533890770",
- "_key" : "capital-canberra"
+ "_key" : "capital-canberra",
+ "_rev" : "1429775634",
+ "name" : "Canberra",
+ "type" : "capital"
},
{
- "name" : "Beijing",
- "type" : "capital",
"_id" : "worldVertices/capital-beijing",
- "_rev" : "2532121298",
- "_key" : "capital-beijing"
+ "_key" : "capital-beijing",
+ "_rev" : "1428006162",
+ "name" : "Beijing",
+ "type" : "capital"
},
{
- "name" : "Santiago",
- "type" : "capital",
"_id" : "worldVertices/capital-santiago",
- "_rev" : "2537429714",
- "_key" : "capital-santiago"
+ "_key" : "capital-santiago",
+ "_rev" : "1433314578",
+ "name" : "Santiago",
+ "type" : "capital"
},
{
+ "_id" : "worldVertices/country-bulgaria",
+ "_key" : "country-bulgaria",
+ "_rev" : "1423287570",
"code" : "BGR",
"name" : "Bulgaria",
- "type" : "country",
- "_id" : "worldVertices/country-bulgaria",
- "_rev" : "2527402706",
- "_key" : "country-bulgaria"
+ "type" : "country"
},
{
- "name" : "Tirana",
- "type" : "capital",
"_id" : "worldVertices/capital-tirana",
- "_rev" : "2538216146",
- "_key" : "capital-tirana"
+ "_key" : "capital-tirana",
+ "_rev" : "1434101010",
+ "name" : "Tirana",
+ "type" : "capital"
},
{
- "name" : "Brasilia",
- "type" : "capital",
"_id" : "worldVertices/capital-brasilia",
- "_rev" : "2532711122",
- "_key" : "capital-brasilia"
+ "_key" : "capital-brasilia",
+ "_rev" : "1428595986",
+ "name" : "Brasilia",
+ "type" : "capital"
},
{
- "name" : "Algiers",
- "type" : "capital",
"_id" : "worldVertices/capital-algiers",
- "_rev" : "2531334866",
- "_key" : "capital-algiers"
+ "_key" : "capital-algiers",
+ "_rev" : "1427219730",
+ "name" : "Algiers",
+ "type" : "capital"
},
{
+ "_id" : "worldVertices/country-bosnia-and-herzegovina",
+ "_key" : "country-bosnia-and-herzegovina",
+ "_rev" : "1422501138",
"code" : "BIH",
"name" : "Bosnia and Herzegovina",
- "type" : "country",
- "_id" : "worldVertices/country-bosnia-and-herzegovina",
- "_rev" : "2526616274",
- "_key" : "country-bosnia-and-herzegovina"
+ "type" : "country"
},
{
+ "_id" : "worldVertices/country-bahrain",
+ "_key" : "country-bahrain",
+ "_rev" : "1421321490",
"code" : "BHR",
"name" : "Bahrain",
- "type" : "country",
- "_id" : "worldVertices/country-bahrain",
- "_rev" : "2525436626",
- "_key" : "country-bahrain"
+ "type" : "country"
},
{
+ "_id" : "worldVertices/country-bahamas",
+ "_key" : "country-bahamas",
+ "_rev" : "1421124882",
"code" : "BHS",
"name" : "Bahamas",
- "type" : "country",
- "_id" : "worldVertices/country-bahamas",
- "_rev" : "2525240018",
- "_key" : "country-bahamas"
+ "type" : "country"
},
{
- "name" : "Bujumbura",
- "type" : "capital",
"_id" : "worldVertices/capital-bujumbura",
- "_rev" : "2533497554",
- "_key" : "capital-bujumbura"
+ "_key" : "capital-bujumbura",
+ "_rev" : "1429382418",
+ "name" : "Bujumbura",
+ "type" : "capital"
},
{
+ "_id" : "worldVertices/country-bangladesh",
+ "_key" : "country-bangladesh",
+ "_rev" : "1421518098",
"code" : "BGD",
"name" : "Bangladesh",
- "type" : "country",
- "_id" : "worldVertices/country-bangladesh",
- "_rev" : "2525633234",
- "_key" : "country-bangladesh"
+ "type" : "country"
},
{
+ "_id" : "worldVertices/country-andorra",
+ "_key" : "country-andorra",
+ "_rev" : "1419879698",
"code" : "AND",
"name" : "Andorra",
- "type" : "country",
- "_id" : "worldVertices/country-andorra",
- "_rev" : "2523994834",
- "_key" : "country-andorra"
+ "type" : "country"
},
{
- "name" : "Brunei",
- "code" : "BRN",
- "type" : "country",
"_id" : "worldVertices/country-brunei",
- "_rev" : "2527206098",
- "_key" : "country-brunei"
+ "_key" : "country-brunei",
+ "_rev" : "1423090962",
+ "code" : "BRN",
+ "name" : "Brunei",
+ "type" : "country"
},
{
- "name" : "Vienna",
- "type" : "capital",
"_id" : "worldVertices/capital-vienna",
- "_rev" : "2538412754",
- "_key" : "capital-vienna"
+ "_key" : "capital-vienna",
+ "_rev" : "1434297618",
+ "name" : "Vienna",
+ "type" : "capital"
},
{
+ "_id" : "worldVertices/country-belgium",
+ "_key" : "country-belgium",
+ "_rev" : "1421911314",
"code" : "BEL",
"name" : "Belgium",
- "type" : "country",
- "_id" : "worldVertices/country-belgium",
- "_rev" : "2526026450",
- "_key" : "country-belgium"
+ "type" : "country"
},
{
- "name" : "Dhaka",
- "type" : "capital",
"_id" : "worldVertices/capital-dhaka",
- "_rev" : "2534283986",
- "_key" : "capital-dhaka"
+ "_key" : "capital-dhaka",
+ "_rev" : "1430168850",
+ "name" : "Dhaka",
+ "type" : "capital"
},
{
- "name" : "Yamoussoukro",
- "type" : "capital",
"_id" : "worldVertices/capital-yamoussoukro",
- "_rev" : "2538609362",
- "_key" : "capital-yamoussoukro"
+ "_key" : "capital-yamoussoukro",
+ "_rev" : "1434494226",
+ "name" : "Yamoussoukro",
+ "type" : "capital"
},
{
+ "_id" : "worldVertices/country-burundi",
+ "_key" : "country-burundi",
+ "_rev" : "1423680786",
"code" : "BDI",
"name" : "Burundi",
- "type" : "country",
- "_id" : "worldVertices/country-burundi",
- "_rev" : "2527795922",
- "_key" : "country-burundi"
+ "type" : "country"
},
{
+ "_id" : "worldVertices/country-cote-d-ivoire",
+ "_key" : "country-cote-d-ivoire",
+ "_rev" : "1425057042",
"code" : "CIV",
"name" : "Cote d'Ivoire",
- "type" : "country",
- "_id" : "worldVertices/country-cote-d-ivoire",
- "_rev" : "2529172178",
- "_key" : "country-cote-d-ivoire"
+ "type" : "country"
},
{
+ "_id" : "worldVertices/country-people-s-republic-of-china",
+ "_key" : "country-people-s-republic-of-china",
+ "_rev" : "1427023122",
"code" : "CHN",
"name" : "People's Republic of China",
- "type" : "country",
- "_id" : "worldVertices/country-people-s-republic-of-china",
- "_rev" : "2531138258",
- "_key" : "country-people-s-republic-of-china"
+ "type" : "country"
},
{
- "name" : "Phnom Penh",
- "type" : "capital",
"_id" : "worldVertices/capital-phnom-penh",
- "_rev" : "2536643282",
- "_key" : "capital-phnom-penh"
+ "_key" : "capital-phnom-penh",
+ "_rev" : "1432528146",
+ "name" : "Phnom Penh",
+ "type" : "capital"
},
{
+ "_id" : "worldVertices/country-czech-republic",
+ "_key" : "country-czech-republic",
+ "_rev" : "1425450258",
"code" : "CZE",
"name" : "Czech Republic",
- "type" : "country",
- "_id" : "worldVertices/country-czech-republic",
- "_rev" : "2529565394",
- "_key" : "country-czech-republic"
+ "type" : "country"
},
{
- "name" : "Chad",
- "code" : "TCD",
- "type" : "country",
"_id" : "worldVertices/country-chad",
- "_rev" : "2528582354",
- "_key" : "country-chad"
+ "_key" : "country-chad",
+ "_rev" : "1424467218",
+ "code" : "TCD",
+ "name" : "Chad",
+ "type" : "country"
},
{
- "name" : "Angola",
- "code" : "AGO",
- "type" : "country",
"_id" : "worldVertices/country-angola",
- "_rev" : "2524256978",
- "_key" : "country-angola"
+ "_key" : "country-angola",
+ "_rev" : "1420141842",
+ "code" : "AGO",
+ "name" : "Angola",
+ "type" : "country"
},
{
- "name" : "Berlin",
- "type" : "capital",
"_id" : "worldVertices/capital-berlin",
- "_rev" : "2532317906",
- "_key" : "capital-berlin"
+ "_key" : "capital-berlin",
+ "_rev" : "1428202770",
+ "name" : "Berlin",
+ "type" : "capital"
},
{
- "name" : "Quito",
- "type" : "capital",
"_id" : "worldVertices/capital-quito",
- "_rev" : "2537036498",
- "_key" : "capital-quito"
+ "_key" : "capital-quito",
+ "_rev" : "1432921362",
+ "name" : "Quito",
+ "type" : "capital"
},
{
+ "_id" : "worldVertices/country-australia",
+ "_key" : "country-australia",
+ "_rev" : "1420731666",
"code" : "AUS",
"name" : "Australia",
- "type" : "country",
- "_id" : "worldVertices/country-australia",
- "_rev" : "2524846802",
- "_key" : "country-australia"
+ "type" : "country"
},
{
- "name" : "Ottawa",
- "type" : "capital",
"_id" : "worldVertices/capital-ottawa",
- "_rev" : "2536053458",
- "_key" : "capital-ottawa"
+ "_key" : "capital-ottawa",
+ "_rev" : "1431938322",
+ "name" : "Ottawa",
+ "type" : "capital"
},
{
+ "_id" : "worldVertices/country-afghanistan",
+ "_key" : "country-afghanistan",
+ "_rev" : "1419289874",
"code" : "AFG",
"name" : "Afghanistan",
- "type" : "country",
- "_id" : "worldVertices/country-afghanistan",
- "_rev" : "2523405010",
- "_key" : "country-afghanistan"
+ "type" : "country"
},
{
+ "_id" : "worldVertices/country-austria",
+ "_key" : "country-austria",
+ "_rev" : "1420928274",
"code" : "AUT",
"name" : "Austria",
- "type" : "country",
- "_id" : "worldVertices/country-austria",
- "_rev" : "2525043410",
- "_key" : "country-austria"
+ "type" : "country"
},
{
+ "_id" : "worldVertices/country-botswana",
+ "_key" : "country-botswana",
+ "_rev" : "1422697746",
"code" : "BWA",
"name" : "Botswana",
- "type" : "country",
- "_id" : "worldVertices/country-botswana",
- "_rev" : "2526812882",
- "_key" : "country-botswana"
+ "type" : "country"
},
{
- "name" : "Helsinki",
- "type" : "capital",
"_id" : "worldVertices/capital-helsinki",
- "_rev" : "2534677202",
- "_key" : "capital-helsinki"
+ "_key" : "capital-helsinki",
+ "_rev" : "1430562066",
+ "name" : "Helsinki",
+ "type" : "capital"
},
{
- "name" : "World",
- "type" : "root",
"_id" : "worldVertices/world",
- "_rev" : "2521766610",
- "_key" : "world"
+ "_key" : "world",
+ "_rev" : "1417651474",
+ "name" : "World",
+ "type" : "root"
},
{
- "name" : "Nassau",
- "type" : "capital",
"_id" : "worldVertices/capital-nassau",
- "_rev" : "2535660242",
- "_key" : "capital-nassau"
+ "_key" : "capital-nassau",
+ "_rev" : "1431545106",
+ "name" : "Nassau",
+ "type" : "capital"
},
{
- "name" : "Manama",
- "type" : "capital",
"_id" : "worldVertices/capital-manama",
- "_rev" : "2535463634",
- "_key" : "capital-manama"
+ "_key" : "capital-manama",
+ "_rev" : "1431348498",
+ "name" : "Manama",
+ "type" : "capital"
},
{
- "name" : "Egypt",
- "code" : "EGY",
- "type" : "country",
"_id" : "worldVertices/country-egypt",
- "_rev" : "2530155218",
- "_key" : "country-egypt"
+ "_key" : "country-egypt",
+ "_rev" : "1426040082",
+ "code" : "EGY",
+ "name" : "Egypt",
+ "type" : "country"
},
{
- "name" : "Europe",
- "type" : "continent",
"_id" : "worldVertices/continent-europe",
- "_rev" : "2522684114",
- "_key" : "continent-europe"
+ "_key" : "continent-europe",
+ "_rev" : "1418568978",
+ "name" : "Europe",
+ "type" : "continent"
},
{
- "name" : "North America",
- "type" : "continent",
"_id" : "worldVertices/continent-north-america",
- "_rev" : "2522880722",
- "_key" : "continent-north-america"
+ "_key" : "continent-north-america",
+ "_rev" : "1418765586",
+ "name" : "North America",
+ "type" : "continent"
},
{
- "name" : "Africa",
- "type" : "continent",
"_id" : "worldVertices/continent-africa",
- "_rev" : "2522028754",
- "_key" : "continent-africa"
+ "_key" : "continent-africa",
+ "_rev" : "1417913618",
+ "name" : "Africa",
+ "type" : "continent"
},
{
+ "_id" : "worldVertices/country-burkina-faso",
+ "_key" : "country-burkina-faso",
+ "_rev" : "1423484178",
"code" : "BFA",
"name" : "Burkina Faso",
- "type" : "country",
- "_id" : "worldVertices/country-burkina-faso",
- "_rev" : "2527599314",
- "_key" : "country-burkina-faso"
+ "type" : "country"
},
{
- "name" : "Bogota",
- "type" : "capital",
"_id" : "worldVertices/capital-bogota",
- "_rev" : "2532514514",
- "_key" : "capital-bogota"
+ "_key" : "capital-bogota",
+ "_rev" : "1428399378",
+ "name" : "Bogota",
+ "type" : "capital"
},
{
- "name" : "Ouagadougou",
- "type" : "capital",
"_id" : "worldVertices/capital-ouagadougou",
- "_rev" : "2536250066",
- "_key" : "capital-ouagadougou"
+ "_key" : "capital-ouagadougou",
+ "_rev" : "1432134930",
+ "name" : "Ouagadougou",
+ "type" : "capital"
},
{
- "name" : "Australia",
- "type" : "continent",
"_id" : "worldVertices/continent-australia",
- "_rev" : "2522487506",
- "_key" : "continent-australia"
+ "_key" : "continent-australia",
+ "_rev" : "1418372370",
+ "name" : "Australia",
+ "type" : "continent"
},
{
- "name" : "Bhutan",
- "code" : "BTN",
- "type" : "country",
"_id" : "worldVertices/country-bhutan",
- "_rev" : "2526223058",
- "_key" : "country-bhutan"
+ "_key" : "country-bhutan",
+ "_rev" : "1422107922",
+ "code" : "BTN",
+ "name" : "Bhutan",
+ "type" : "country"
},
{
- "name" : "Sofia",
- "type" : "capital",
"_id" : "worldVertices/capital-sofia",
- "_rev" : "2537822930",
- "_key" : "capital-sofia"
+ "_key" : "capital-sofia",
+ "_rev" : "1433707794",
+ "name" : "Sofia",
+ "type" : "capital"
},
{
- "name" : "Asia",
- "type" : "continent",
"_id" : "worldVertices/continent-asia",
- "_rev" : "2522225362",
- "_key" : "continent-asia"
+ "_key" : "continent-asia",
+ "_rev" : "1418110226",
+ "name" : "Asia",
+ "type" : "continent"
},
{
+ "_id" : "worldVertices/country-argentina",
+ "_key" : "country-argentina",
+ "_rev" : "1420535058",
"code" : "ARG",
"name" : "Argentina",
- "type" : "country",
- "_id" : "worldVertices/country-argentina",
- "_rev" : "2524650194",
- "_key" : "country-argentina"
+ "type" : "country"
},
{
+ "_id" : "worldVertices/country-antigua-and-barbuda",
+ "_key" : "country-antigua-and-barbuda",
+ "_rev" : "1420338450",
"code" : "ATG",
"name" : "Antigua and Barbuda",
- "type" : "country",
- "_id" : "worldVertices/country-antigua-and-barbuda",
- "_rev" : "2524453586",
- "_key" : "country-antigua-and-barbuda"
+ "type" : "country"
},
{
- "name" : "Sarajevo",
- "type" : "capital",
"_id" : "worldVertices/capital-sarajevo",
- "_rev" : "2537626322",
- "_key" : "capital-sarajevo"
+ "_key" : "capital-sarajevo",
+ "_rev" : "1433511186",
+ "name" : "Sarajevo",
+ "type" : "capital"
},
{
- "name" : "Asmara",
- "type" : "capital",
"_id" : "worldVertices/capital-asmara",
- "_rev" : "2531728082",
- "_key" : "capital-asmara"
+ "_key" : "capital-asmara",
+ "_rev" : "1427612946",
+ "name" : "Asmara",
+ "type" : "capital"
},
{
- "name" : "Kabul",
- "type" : "capital",
"_id" : "worldVertices/capital-kabul",
- "_rev" : "2534873810",
- "_key" : "capital-kabul"
+ "_key" : "capital-kabul",
+ "_rev" : "1430758674",
+ "name" : "Kabul",
+ "type" : "capital"
},
{
+ "_id" : "worldVertices/country-germany",
+ "_key" : "country-germany",
+ "_rev" : "1426826514",
"code" : "DEU",
"name" : "Germany",
- "type" : "country",
- "_id" : "worldVertices/country-germany",
- "_rev" : "2530941650",
- "_key" : "country-germany"
+ "type" : "country"
},
{
- "name" : "Chile",
- "code" : "CHL",
- "type" : "country",
"_id" : "worldVertices/country-chile",
- "_rev" : "2528778962",
- "_key" : "country-chile"
+ "_key" : "country-chile",
+ "_rev" : "1424663826",
+ "code" : "CHL",
+ "name" : "Chile",
+ "type" : "country"
},
{
- "name" : "Paris",
- "type" : "capital",
"_id" : "worldVertices/capital-paris",
- "_rev" : "2536446674",
- "_key" : "capital-paris"
+ "_key" : "capital-paris",
+ "_rev" : "1432331538",
+ "name" : "Paris",
+ "type" : "capital"
},
{
- "name" : "Luanda",
- "type" : "capital",
"_id" : "worldVertices/capital-luanda",
- "_rev" : "2535267026",
- "_key" : "capital-luanda"
+ "_key" : "capital-luanda",
+ "_rev" : "1431151890",
+ "name" : "Luanda",
+ "type" : "capital"
},
{
- "name" : "Yaounde",
- "type" : "capital",
"_id" : "worldVertices/capital-yaounde",
- "_rev" : "2538805970",
- "_key" : "capital-yaounde"
+ "_key" : "capital-yaounde",
+ "_rev" : "1434690834",
+ "name" : "Yaounde",
+ "type" : "capital"
},
{
+ "_id" : "worldVertices/country-croatia",
+ "_key" : "country-croatia",
+ "_rev" : "1425253650",
"code" : "HRV",
"name" : "Croatia",
- "type" : "country",
- "_id" : "worldVertices/country-croatia",
- "_rev" : "2529368786",
- "_key" : "country-croatia"
+ "type" : "country"
},
{
- "name" : "Zagreb",
- "type" : "capital",
"_id" : "worldVertices/capital-zagreb",
- "_rev" : "2539002578",
- "_key" : "capital-zagreb"
+ "_key" : "capital-zagreb",
+ "_rev" : "1434887442",
+ "name" : "Zagreb",
+ "type" : "capital"
},
{
- "name" : "Cairo",
- "type" : "capital",
"_id" : "worldVertices/capital-cairo",
- "_rev" : "2533694162",
- "_key" : "capital-cairo"
+ "_key" : "capital-cairo",
+ "_rev" : "1429579026",
+ "name" : "Cairo",
+ "type" : "capital"
},
{
+ "_id" : "worldVertices/country-denmark",
+ "_key" : "country-denmark",
+ "_rev" : "1425646866",
"code" : "DNK",
"name" : "Denmark",
- "type" : "country",
- "_id" : "worldVertices/country-denmark",
- "_rev" : "2529762002",
- "_key" : "country-denmark"
+ "type" : "country"
},
{
- "name" : "Copenhagen",
- "type" : "capital",
"_id" : "worldVertices/capital-copenhagen",
- "_rev" : "2534087378",
- "_key" : "capital-copenhagen"
+ "_key" : "capital-copenhagen",
+ "_rev" : "1429972242",
+ "name" : "Copenhagen",
+ "type" : "capital"
},
{
- "name" : "Prague",
- "type" : "capital",
"_id" : "worldVertices/capital-prague",
- "_rev" : "2536839890",
- "_key" : "capital-prague"
+ "_key" : "capital-prague",
+ "_rev" : "1432724754",
+ "name" : "Prague",
+ "type" : "capital"
},
{
- "name" : "Canada",
- "code" : "CAN",
- "type" : "country",
"_id" : "worldVertices/country-canada",
- "_rev" : "2528385746",
- "_key" : "country-canada"
+ "_key" : "country-canada",
+ "_rev" : "1424270610",
+ "code" : "CAN",
+ "name" : "Canada",
+ "type" : "country"
},
{
+ "_id" : "worldVertices/country-eritrea",
+ "_key" : "country-eritrea",
+ "_rev" : "1426236690",
"code" : "ERI",
"name" : "Eritrea",
- "type" : "country",
- "_id" : "worldVertices/country-eritrea",
- "_rev" : "2530351826",
- "_key" : "country-eritrea"
+ "type" : "country"
},
{
+ "_id" : "worldVertices/country-cambodia",
+ "_key" : "country-cambodia",
+ "_rev" : "1423877394",
"code" : "KHM",
"name" : "Cambodia",
- "type" : "country",
- "_id" : "worldVertices/country-cambodia",
- "_rev" : "2527992530",
- "_key" : "country-cambodia"
+ "type" : "country"
},
{
- "name" : "Brazil",
- "code" : "BRA",
- "type" : "country",
"_id" : "worldVertices/country-brazil",
- "_rev" : "2527009490",
- "_key" : "country-brazil"
+ "_key" : "country-brazil",
+ "_rev" : "1422894354",
+ "code" : "BRA",
+ "name" : "Brazil",
+ "type" : "country"
},
{
+ "_id" : "worldVertices/country-barbados",
+ "_key" : "country-barbados",
+ "_rev" : "1421714706",
"code" : "BRB",
"name" : "Barbados",
- "type" : "country",
- "_id" : "worldVertices/country-barbados",
- "_rev" : "2525829842",
- "_key" : "country-barbados"
+ "type" : "country"
},
{
- "name" : "South America",
- "type" : "continent",
"_id" : "worldVertices/continent-south-america",
- "_rev" : "2523077330",
- "_key" : "continent-south-america"
+ "_key" : "continent-south-america",
+ "_rev" : "1418962194",
+ "name" : "South America",
+ "type" : "continent"
},
{
+ "_id" : "worldVertices/country-colombia",
+ "_key" : "country-colombia",
+ "_rev" : "1424860434",
"code" : "COL",
"name" : "Colombia",
- "type" : "country",
- "_id" : "worldVertices/country-colombia",
- "_rev" : "2528975570",
- "_key" : "country-colombia"
+ "type" : "country"
},
{
- "name" : "N'Djamena",
- "type" : "capital",
"_id" : "worldVertices/capital-n-djamena",
- "_rev" : "2535856850",
- "_key" : "capital-n-djamena"
+ "_key" : "capital-n-djamena",
+ "_rev" : "1431741714",
+ "name" : "N'Djamena",
+ "type" : "capital"
},
{
+ "_id" : "worldVertices/country-algeria",
+ "_key" : "country-algeria",
+ "_rev" : "1419683090",
"code" : "DZA",
"name" : "Algeria",
- "type" : "country",
- "_id" : "worldVertices/country-algeria",
- "_rev" : "2523798226",
- "_key" : "country-algeria"
+ "type" : "country"
},
{
- "name" : "Brussels",
- "type" : "capital",
"_id" : "worldVertices/capital-brussels",
- "_rev" : "2533104338",
- "_key" : "capital-brussels"
+ "_key" : "capital-brussels",
+ "_rev" : "1428989202",
+ "name" : "Brussels",
+ "type" : "capital"
},
{
- "name" : "La Paz",
- "type" : "capital",
"_id" : "worldVertices/capital-la-paz",
- "_rev" : "2535070418",
- "_key" : "capital-la-paz"
+ "_key" : "capital-la-paz",
+ "_rev" : "1430955282",
+ "name" : "La Paz",
+ "type" : "capital"
},
{
- "name" : "Buenos Aires",
- "type" : "capital",
"_id" : "worldVertices/capital-buenos-aires",
- "_rev" : "2533300946",
- "_key" : "capital-buenos-aires"
+ "_key" : "capital-buenos-aires",
+ "_rev" : "1429185810",
+ "name" : "Buenos Aires",
+ "type" : "capital"
},
{
- "name" : "Thimphu",
- "type" : "capital",
"_id" : "worldVertices/capital-thimphu",
- "_rev" : "2538019538",
- "_key" : "capital-thimphu"
+ "_key" : "capital-thimphu",
+ "_rev" : "1433904402",
+ "name" : "Thimphu",
+ "type" : "capital"
},
{
- "name" : "Bridgetown",
- "type" : "capital",
"_id" : "worldVertices/capital-bridgetown",
- "_rev" : "2532907730",
- "_key" : "capital-bridgetown"
+ "_key" : "capital-bridgetown",
+ "_rev" : "1428792594",
+ "name" : "Bridgetown",
+ "type" : "capital"
},
{
- "name" : "Saint John's",
- "type" : "capital",
"_id" : "worldVertices/capital-saint-john-s",
- "_rev" : "2537233106",
- "_key" : "capital-saint-john-s"
+ "_key" : "capital-saint-john-s",
+ "_rev" : "1433117970",
+ "name" : "Saint John's",
+ "type" : "capital"
},
{
- "name" : "France",
- "code" : "FRA",
- "type" : "country",
"_id" : "worldVertices/country-france",
- "_rev" : "2530745042",
- "_key" : "country-france"
+ "_key" : "country-france",
+ "_rev" : "1426629906",
+ "code" : "FRA",
+ "name" : "France",
+ "type" : "country"
},
{
+ "_id" : "worldVertices/country-ecuador",
+ "_key" : "country-ecuador",
+ "_rev" : "1425843474",
"code" : "ECU",
"name" : "Ecuador",
- "type" : "country",
- "_id" : "worldVertices/country-ecuador",
- "_rev" : "2529958610",
- "_key" : "country-ecuador"
+ "type" : "country"
},
{
- "name" : "Gaborone",
- "type" : "capital",
"_id" : "worldVertices/capital-gaborone",
- "_rev" : "2534480594",
- "_key" : "capital-gaborone"
+ "_key" : "capital-gaborone",
+ "_rev" : "1430365458",
+ "name" : "Gaborone",
+ "type" : "capital"
}
]
arangosh> db.worldEdges.toArray();
[
{
- "type" : "is-in",
- "_id" : "worldEdges/2543852242",
- "_rev" : "2543852242",
- "_key" : "2543852242",
- "_from" : "worldVertices/country-botswana",
- "_to" : "worldVertices/continent-africa"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2547784402",
- "_rev" : "2547784402",
- "_key" : "2547784402",
- "_from" : "worldVertices/country-france",
- "_to" : "worldVertices/continent-europe"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2554665682",
- "_rev" : "2554665682",
- "_key" : "2554665682",
- "_from" : "worldVertices/capital-sarajevo",
- "_to" : "worldVertices/country-bosnia-and-herzegovina"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2553682642",
- "_rev" : "2553682642",
- "_key" : "2553682642",
- "_from" : "worldVertices/capital-phnom-penh",
- "_to" : "worldVertices/country-cambodia"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2554272466",
- "_rev" : "2554272466",
- "_key" : "2554272466",
- "_from" : "worldVertices/capital-saint-john-s",
- "_to" : "worldVertices/country-antigua-and-barbuda"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2546604754",
- "_rev" : "2546604754",
- "_key" : "2546604754",
- "_from" : "worldVertices/country-czech-republic",
- "_to" : "worldVertices/continent-europe"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2547981010",
- "_rev" : "2547981010",
- "_key" : "2547981010",
- "_from" : "worldVertices/country-germany",
- "_to" : "worldVertices/continent-europe"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2548177618",
- "_rev" : "2548177618",
- "_key" : "2548177618",
- "_from" : "worldVertices/country-people-s-republic-of-china",
- "_to" : "worldVertices/continent-asia"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2543655634",
- "_rev" : "2543655634",
- "_key" : "2543655634",
- "_from" : "worldVertices/country-bosnia-and-herzegovina",
- "_to" : "worldVertices/continent-europe"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2544048850",
- "_rev" : "2544048850",
- "_key" : "2544048850",
- "_from" : "worldVertices/country-brazil",
- "_to" : "worldVertices/continent-south-america"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2540903122",
- "_rev" : "2540903122",
- "_key" : "2540903122",
- "_from" : "worldVertices/country-algeria",
- "_to" : "worldVertices/continent-africa"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2549553874",
- "_rev" : "2549553874",
- "_key" : "2549553874",
- "_from" : "worldVertices/capital-bogota",
- "_to" : "worldVertices/country-colombia"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2553486034",
- "_rev" : "2553486034",
- "_key" : "2553486034",
- "_from" : "worldVertices/capital-paris",
- "_to" : "worldVertices/country-france"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2542869202",
- "_rev" : "2542869202",
- "_key" : "2542869202",
- "_from" : "worldVertices/country-barbados",
- "_to" : "worldVertices/continent-north-america"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2539723474",
- "_rev" : "2539723474",
- "_key" : "2539723474",
- "_from" : "worldVertices/continent-australia",
- "_to" : "worldVertices/world"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2555648722",
- "_rev" : "2555648722",
- "_key" : "2555648722",
- "_from" : "worldVertices/capital-yamoussoukro",
- "_to" : "worldVertices/country-cote-d-ivoire"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2546014930",
- "_rev" : "2546014930",
- "_key" : "2546014930",
- "_from" : "worldVertices/country-colombia",
- "_to" : "worldVertices/continent-south-america"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2539526866",
- "_rev" : "2539526866",
- "_key" : "2539526866",
- "_from" : "worldVertices/continent-asia",
- "_to" : "worldVertices/world"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2550340306",
- "_rev" : "2550340306",
- "_key" : "2550340306",
- "_from" : "worldVertices/capital-buenos-aires",
- "_to" : "worldVertices/country-argentina"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2539920082",
- "_rev" : "2539920082",
- "_key" : "2539920082",
- "_from" : "worldVertices/continent-europe",
- "_to" : "worldVertices/world"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2552109778",
- "_rev" : "2552109778",
- "_key" : "2552109778",
- "_from" : "worldVertices/capital-la-paz",
- "_to" : "worldVertices/country-bolivia"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2555845330",
- "_rev" : "2555845330",
- "_key" : "2555845330",
- "_from" : "worldVertices/capital-yaounde",
- "_to" : "worldVertices/country-cameroon"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2549750482",
- "_rev" : "2549750482",
- "_key" : "2549750482",
- "_from" : "worldVertices/capital-brasilia",
- "_to" : "worldVertices/country-brazil"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2554469074",
- "_rev" : "2554469074",
- "_key" : "2554469074",
- "_from" : "worldVertices/capital-santiago",
- "_to" : "worldVertices/country-chile"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2552306386",
- "_rev" : "2552306386",
- "_key" : "2552306386",
- "_from" : "worldVertices/capital-luanda",
- "_to" : "worldVertices/country-angola"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2550536914",
- "_rev" : "2550536914",
- "_key" : "2550536914",
- "_from" : "worldVertices/capital-bujumbura",
- "_to" : "worldVertices/country-burundi"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2542672594",
- "_rev" : "2542672594",
- "_key" : "2542672594",
- "_from" : "worldVertices/country-bangladesh",
- "_to" : "worldVertices/continent-asia"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2545818322",
- "_rev" : "2545818322",
- "_key" : "2545818322",
- "_from" : "worldVertices/country-chile",
- "_to" : "worldVertices/continent-south-america"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2550930130",
- "_rev" : "2550930130",
- "_key" : "2550930130",
- "_from" : "worldVertices/capital-canberra",
- "_to" : "worldVertices/country-australia"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2547391186",
- "_rev" : "2547391186",
- "_key" : "2547391186",
- "_from" : "worldVertices/country-eritrea",
- "_to" : "worldVertices/continent-africa"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2556041938",
- "_rev" : "2556041938",
- "_key" : "2556041938",
- "_from" : "worldVertices/capital-zagreb",
- "_to" : "worldVertices/country-croatia"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2546801362",
- "_rev" : "2546801362",
- "_key" : "2546801362",
- "_from" : "worldVertices/country-denmark",
- "_to" : "worldVertices/continent-europe"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2545621714",
- "_rev" : "2545621714",
- "_key" : "2545621714",
- "_from" : "worldVertices/country-chad",
- "_to" : "worldVertices/continent-africa"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2542082770",
- "_rev" : "2542082770",
- "_key" : "2542082770",
- "_from" : "worldVertices/country-austria",
- "_to" : "worldVertices/continent-europe"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2542279378",
- "_rev" : "2542279378",
- "_key" : "2542279378",
- "_from" : "worldVertices/country-bahamas",
- "_to" : "worldVertices/continent-north-america"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2548964050",
- "_rev" : "2548964050",
- "_key" : "2548964050",
- "_from" : "worldVertices/capital-bandar-seri-begawan",
- "_to" : "worldVertices/country-brunei"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2544245458",
- "_rev" : "2544245458",
- "_key" : "2544245458",
- "_from" : "worldVertices/country-brunei",
- "_to" : "worldVertices/continent-asia"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2549160658",
- "_rev" : "2549160658",
- "_key" : "2549160658",
- "_from" : "worldVertices/capital-beijing",
- "_to" : "worldVertices/country-people-s-republic-of-china"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2548570834",
- "_rev" : "2548570834",
- "_key" : "2548570834",
- "_from" : "worldVertices/capital-andorra-la-vella",
- "_to" : "worldVertices/country-andorra"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2541099730",
- "_rev" : "2541099730",
- "_key" : "2541099730",
- "_from" : "worldVertices/country-andorra",
- "_to" : "worldVertices/continent-europe"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2551519954",
- "_rev" : "2551519954",
- "_key" : "2551519954",
- "_from" : "worldVertices/capital-gaborone",
- "_to" : "worldVertices/country-botswana"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2552699602",
- "_rev" : "2552699602",
- "_key" : "2552699602",
- "_from" : "worldVertices/capital-nassau",
- "_to" : "worldVertices/country-bahamas"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2555255506",
- "_rev" : "2555255506",
- "_key" : "2555255506",
- "_from" : "worldVertices/capital-tirana",
- "_to" : "worldVertices/country-albania"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2540706514",
- "_rev" : "2540706514",
- "_key" : "2540706514",
- "_from" : "worldVertices/country-albania",
- "_to" : "worldVertices/continent-europe"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2553879250",
- "_rev" : "2553879250",
- "_key" : "2553879250",
- "_from" : "worldVertices/capital-prague",
- "_to" : "worldVertices/country-czech-republic"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2551323346",
- "_rev" : "2551323346",
- "_key" : "2551323346",
- "_from" : "worldVertices/capital-dhaka",
- "_to" : "worldVertices/country-bangladesh"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2542475986",
- "_rev" : "2542475986",
- "_key" : "2542475986",
- "_from" : "worldVertices/country-bahrain",
- "_to" : "worldVertices/continent-asia"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2550733522",
- "_rev" : "2550733522",
- "_key" : "2550733522",
- "_from" : "worldVertices/capital-cairo",
- "_to" : "worldVertices/country-egypt"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2549947090",
- "_rev" : "2549947090",
- "_key" : "2549947090",
- "_from" : "worldVertices/capital-bridgetown",
- "_to" : "worldVertices/country-barbados"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2550143698",
- "_rev" : "2550143698",
- "_key" : "2550143698",
- "_from" : "worldVertices/capital-brussels",
- "_to" : "worldVertices/country-belgium"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2548374226",
- "_rev" : "2548374226",
- "_key" : "2548374226",
- "_from" : "worldVertices/capital-algiers",
- "_to" : "worldVertices/country-algeria"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2544835282",
- "_rev" : "2544835282",
- "_key" : "2544835282",
- "_from" : "worldVertices/country-burundi",
- "_to" : "worldVertices/continent-africa"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2540313298",
- "_rev" : "2540313298",
- "_key" : "2540313298",
- "_from" : "worldVertices/continent-south-america",
- "_to" : "worldVertices/world"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2555058898",
- "_rev" : "2555058898",
- "_key" : "2555058898",
- "_from" : "worldVertices/capital-thimphu",
- "_to" : "worldVertices/country-bhutan"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2548767442",
- "_rev" : "2548767442",
- "_key" : "2548767442",
- "_from" : "worldVertices/capital-asmara",
- "_to" : "worldVertices/country-eritrea"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2554075858",
- "_rev" : "2554075858",
- "_key" : "2554075858",
- "_from" : "worldVertices/capital-quito",
- "_to" : "worldVertices/country-ecuador"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2553092818",
- "_rev" : "2553092818",
- "_key" : "2553092818",
- "_from" : "worldVertices/capital-ottawa",
- "_to" : "worldVertices/country-canada"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2555452114",
- "_rev" : "2555452114",
- "_key" : "2555452114",
- "_from" : "worldVertices/capital-vienna",
- "_to" : "worldVertices/country-austria"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2552896210",
- "_rev" : "2552896210",
- "_key" : "2552896210",
- "_from" : "worldVertices/capital-n-djamena",
- "_to" : "worldVertices/country-chad"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2539330258",
- "_rev" : "2539330258",
- "_key" : "2539330258",
- "_from" : "worldVertices/continent-africa",
- "_to" : "worldVertices/world"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2551126738",
- "_rev" : "2551126738",
- "_key" : "2551126738",
- "_from" : "worldVertices/capital-copenhagen",
- "_to" : "worldVertices/country-denmark"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2545425106",
- "_rev" : "2545425106",
- "_key" : "2545425106",
- "_from" : "worldVertices/country-canada",
- "_to" : "worldVertices/continent-north-america"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2540509906",
- "_rev" : "2540509906",
- "_key" : "2540509906",
- "_from" : "worldVertices/country-afghanistan",
- "_to" : "worldVertices/continent-asia"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2541296338",
- "_rev" : "2541296338",
- "_key" : "2541296338",
- "_from" : "worldVertices/country-angola",
- "_to" : "worldVertices/continent-africa"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2544442066",
- "_rev" : "2544442066",
- "_key" : "2544442066",
- "_from" : "worldVertices/country-bulgaria",
- "_to" : "worldVertices/continent-europe"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2545031890",
- "_rev" : "2545031890",
- "_key" : "2545031890",
"_from" : "worldVertices/country-cambodia",
- "_to" : "worldVertices/continent-asia"
+ "_id" : "worldEdges/1440916754",
+ "_key" : "1440916754",
+ "_rev" : "1440916754",
+ "_to" : "worldVertices/continent-asia",
+ "type" : "is-in"
},
{
- "type" : "is-in",
- "_id" : "worldEdges/2545228498",
- "_rev" : "2545228498",
- "_key" : "2545228498",
- "_from" : "worldVertices/country-cameroon",
- "_to" : "worldVertices/continent-africa"
+ "_from" : "worldVertices/capital-bogota",
+ "_id" : "worldEdges/1445438738",
+ "_key" : "1445438738",
+ "_rev" : "1445438738",
+ "_to" : "worldVertices/country-colombia",
+ "type" : "is-in"
},
{
- "type" : "is-in",
- "_id" : "worldEdges/2541886162",
- "_rev" : "2541886162",
- "_key" : "2541886162",
- "_from" : "worldVertices/country-australia",
- "_to" : "worldVertices/continent-australia"
+ "_from" : "worldVertices/country-botswana",
+ "_id" : "worldEdges/1439737106",
+ "_key" : "1439737106",
+ "_rev" : "1439737106",
+ "_to" : "worldVertices/continent-africa",
+ "type" : "is-in"
},
{
- "type" : "is-in",
- "_id" : "worldEdges/2546211538",
- "_rev" : "2546211538",
- "_key" : "2546211538",
- "_from" : "worldVertices/country-cote-d-ivoire",
- "_to" : "worldVertices/continent-africa"
+ "_from" : "worldVertices/country-burundi",
+ "_id" : "worldEdges/1440720146",
+ "_key" : "1440720146",
+ "_rev" : "1440720146",
+ "_to" : "worldVertices/continent-africa",
+ "type" : "is-in"
},
{
- "type" : "is-in",
- "_id" : "worldEdges/2541689554",
- "_rev" : "2541689554",
- "_key" : "2541689554",
- "_from" : "worldVertices/country-argentina",
- "_to" : "worldVertices/continent-south-america"
+ "_from" : "worldVertices/capital-paris",
+ "_id" : "worldEdges/1449370898",
+ "_key" : "1449370898",
+ "_rev" : "1449370898",
+ "_to" : "worldVertices/country-france",
+ "type" : "is-in"
},
{
- "type" : "is-in",
- "_id" : "worldEdges/2549357266",
- "_rev" : "2549357266",
- "_key" : "2549357266",
- "_from" : "worldVertices/capital-berlin",
- "_to" : "worldVertices/country-germany"
+ "_from" : "worldVertices/country-albania",
+ "_id" : "worldEdges/1436591378",
+ "_key" : "1436591378",
+ "_rev" : "1436591378",
+ "_to" : "worldVertices/continent-europe",
+ "type" : "is-in"
},
{
- "type" : "is-in",
- "_id" : "worldEdges/2554862290",
- "_rev" : "2554862290",
- "_key" : "2554862290",
- "_from" : "worldVertices/capital-sofia",
- "_to" : "worldVertices/country-bulgaria"
+ "_from" : "worldVertices/continent-asia",
+ "_id" : "worldEdges/1435411730",
+ "_key" : "1435411730",
+ "_rev" : "1435411730",
+ "_to" : "worldVertices/world",
+ "type" : "is-in"
},
{
- "type" : "is-in",
- "_id" : "worldEdges/2543262418",
- "_rev" : "2543262418",
- "_key" : "2543262418",
- "_from" : "worldVertices/country-bhutan",
- "_to" : "worldVertices/continent-asia"
+ "_from" : "worldVertices/country-algeria",
+ "_id" : "worldEdges/1436787986",
+ "_key" : "1436787986",
+ "_rev" : "1436787986",
+ "_to" : "worldVertices/continent-africa",
+ "type" : "is-in"
},
{
- "type" : "is-in",
- "_id" : "worldEdges/2552502994",
- "_rev" : "2552502994",
- "_key" : "2552502994",
- "_from" : "worldVertices/capital-manama",
- "_to" : "worldVertices/country-bahrain"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2544638674",
- "_rev" : "2544638674",
- "_key" : "2544638674",
- "_from" : "worldVertices/country-burkina-faso",
- "_to" : "worldVertices/continent-africa"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2540116690",
- "_rev" : "2540116690",
- "_key" : "2540116690",
- "_from" : "worldVertices/continent-north-america",
- "_to" : "worldVertices/world"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2551913170",
- "_rev" : "2551913170",
- "_key" : "2551913170",
- "_from" : "worldVertices/capital-kabul",
- "_to" : "worldVertices/country-afghanistan"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2547194578",
- "_rev" : "2547194578",
- "_key" : "2547194578",
- "_from" : "worldVertices/country-egypt",
- "_to" : "worldVertices/continent-africa"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2551716562",
- "_rev" : "2551716562",
- "_key" : "2551716562",
- "_from" : "worldVertices/capital-helsinki",
- "_to" : "worldVertices/country-finland"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2553289426",
- "_rev" : "2553289426",
- "_key" : "2553289426",
"_from" : "worldVertices/capital-ouagadougou",
- "_to" : "worldVertices/country-burkina-faso"
+ "_id" : "worldEdges/1449174290",
+ "_key" : "1449174290",
+ "_rev" : "1449174290",
+ "_to" : "worldVertices/country-burkina-faso",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-gaborone",
+ "_id" : "worldEdges/1447404818",
+ "_key" : "1447404818",
+ "_rev" : "1447404818",
+ "_to" : "worldVertices/country-botswana",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-asmara",
+ "_id" : "worldEdges/1444652306",
+ "_key" : "1444652306",
+ "_rev" : "1444652306",
+ "_to" : "worldVertices/country-eritrea",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-yamoussoukro",
+ "_id" : "worldEdges/1451533586",
+ "_key" : "1451533586",
+ "_rev" : "1451533586",
+ "_to" : "worldVertices/country-cote-d-ivoire",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-bahamas",
+ "_id" : "worldEdges/1438164242",
+ "_key" : "1438164242",
+ "_rev" : "1438164242",
+ "_to" : "worldVertices/continent-north-america",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-dhaka",
+ "_id" : "worldEdges/1447208210",
+ "_key" : "1447208210",
+ "_rev" : "1447208210",
+ "_to" : "worldVertices/country-bangladesh",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-czech-republic",
+ "_id" : "worldEdges/1442489618",
+ "_key" : "1442489618",
+ "_rev" : "1442489618",
+ "_to" : "worldVertices/continent-europe",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-beijing",
+ "_id" : "worldEdges/1445045522",
+ "_key" : "1445045522",
+ "_rev" : "1445045522",
+ "_to" : "worldVertices/country-people-s-republic-of-china",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-nassau",
+ "_id" : "worldEdges/1448584466",
+ "_key" : "1448584466",
+ "_rev" : "1448584466",
+ "_to" : "worldVertices/country-bahamas",
+ "type" : "is-in"
},
{
- "type" : "is-in",
- "_id" : "worldEdges/2546408146",
- "_rev" : "2546408146",
- "_key" : "2546408146",
"_from" : "worldVertices/country-croatia",
- "_to" : "worldVertices/continent-europe"
+ "_id" : "worldEdges/1442293010",
+ "_key" : "1442293010",
+ "_rev" : "1442293010",
+ "_to" : "worldVertices/continent-europe",
+ "type" : "is-in"
},
{
- "type" : "is-in",
- "_id" : "worldEdges/2543065810",
- "_rev" : "2543065810",
- "_key" : "2543065810",
- "_from" : "worldVertices/country-belgium",
- "_to" : "worldVertices/continent-europe"
+ "_from" : "worldVertices/capital-algiers",
+ "_id" : "worldEdges/1444259090",
+ "_key" : "1444259090",
+ "_rev" : "1444259090",
+ "_to" : "worldVertices/country-algeria",
+ "type" : "is-in"
},
{
- "type" : "is-in",
- "_id" : "worldEdges/2541492946",
- "_rev" : "2541492946",
- "_key" : "2541492946",
- "_from" : "worldVertices/country-antigua-and-barbuda",
- "_to" : "worldVertices/continent-north-america"
+ "_from" : "worldVertices/capital-n-djamena",
+ "_id" : "worldEdges/1448781074",
+ "_key" : "1448781074",
+ "_rev" : "1448781074",
+ "_to" : "worldVertices/country-chad",
+ "type" : "is-in"
},
{
- "type" : "is-in",
- "_id" : "worldEdges/2546997970",
- "_rev" : "2546997970",
- "_key" : "2546997970",
- "_from" : "worldVertices/country-ecuador",
- "_to" : "worldVertices/continent-south-america"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2543459026",
- "_rev" : "2543459026",
- "_key" : "2543459026",
- "_from" : "worldVertices/country-bolivia",
- "_to" : "worldVertices/continent-south-america"
- },
- {
- "type" : "is-in",
- "_id" : "worldEdges/2547587794",
- "_rev" : "2547587794",
- "_key" : "2547587794",
"_from" : "worldVertices/country-finland",
- "_to" : "worldVertices/continent-europe"
+ "_id" : "worldEdges/1443472658",
+ "_key" : "1443472658",
+ "_rev" : "1443472658",
+ "_to" : "worldVertices/continent-europe",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-quito",
+ "_id" : "worldEdges/1449960722",
+ "_key" : "1449960722",
+ "_rev" : "1449960722",
+ "_to" : "worldVertices/country-ecuador",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/continent-europe",
+ "_id" : "worldEdges/1435804946",
+ "_key" : "1435804946",
+ "_rev" : "1435804946",
+ "_to" : "worldVertices/world",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-santiago",
+ "_id" : "worldEdges/1450353938",
+ "_key" : "1450353938",
+ "_rev" : "1450353938",
+ "_to" : "worldVertices/country-chile",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-people-s-republic-of-china",
+ "_id" : "worldEdges/1444062482",
+ "_key" : "1444062482",
+ "_rev" : "1444062482",
+ "_to" : "worldVertices/continent-asia",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-bhutan",
+ "_id" : "worldEdges/1439147282",
+ "_key" : "1439147282",
+ "_rev" : "1439147282",
+ "_to" : "worldVertices/continent-asia",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-helsinki",
+ "_id" : "worldEdges/1447601426",
+ "_key" : "1447601426",
+ "_rev" : "1447601426",
+ "_to" : "worldVertices/country-finland",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-antigua-and-barbuda",
+ "_id" : "worldEdges/1437377810",
+ "_key" : "1437377810",
+ "_rev" : "1437377810",
+ "_to" : "worldVertices/continent-north-america",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-angola",
+ "_id" : "worldEdges/1437181202",
+ "_key" : "1437181202",
+ "_rev" : "1437181202",
+ "_to" : "worldVertices/continent-africa",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-thimphu",
+ "_id" : "worldEdges/1450943762",
+ "_key" : "1450943762",
+ "_rev" : "1450943762",
+ "_to" : "worldVertices/country-bhutan",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/continent-north-america",
+ "_id" : "worldEdges/1436001554",
+ "_key" : "1436001554",
+ "_rev" : "1436001554",
+ "_to" : "worldVertices/world",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-yaounde",
+ "_id" : "worldEdges/1451730194",
+ "_key" : "1451730194",
+ "_rev" : "1451730194",
+ "_to" : "worldVertices/country-cameroon",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-bandar-seri-begawan",
+ "_id" : "worldEdges/1444848914",
+ "_key" : "1444848914",
+ "_rev" : "1444848914",
+ "_to" : "worldVertices/country-brunei",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-andorra",
+ "_id" : "worldEdges/1436984594",
+ "_key" : "1436984594",
+ "_rev" : "1436984594",
+ "_to" : "worldVertices/continent-europe",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-chile",
+ "_id" : "worldEdges/1441703186",
+ "_key" : "1441703186",
+ "_rev" : "1441703186",
+ "_to" : "worldVertices/continent-south-america",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-phnom-penh",
+ "_id" : "worldEdges/1449567506",
+ "_key" : "1449567506",
+ "_rev" : "1449567506",
+ "_to" : "worldVertices/country-cambodia",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-cameroon",
+ "_id" : "worldEdges/1441113362",
+ "_key" : "1441113362",
+ "_rev" : "1441113362",
+ "_to" : "worldVertices/continent-africa",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-brussels",
+ "_id" : "worldEdges/1446028562",
+ "_key" : "1446028562",
+ "_rev" : "1446028562",
+ "_to" : "worldVertices/country-belgium",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-buenos-aires",
+ "_id" : "worldEdges/1446225170",
+ "_key" : "1446225170",
+ "_rev" : "1446225170",
+ "_to" : "worldVertices/country-argentina",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-bulgaria",
+ "_id" : "worldEdges/1440326930",
+ "_key" : "1440326930",
+ "_rev" : "1440326930",
+ "_to" : "worldVertices/continent-europe",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-ottawa",
+ "_id" : "worldEdges/1448977682",
+ "_key" : "1448977682",
+ "_rev" : "1448977682",
+ "_to" : "worldVertices/country-canada",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-bangladesh",
+ "_id" : "worldEdges/1438557458",
+ "_key" : "1438557458",
+ "_rev" : "1438557458",
+ "_to" : "worldVertices/continent-asia",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-copenhagen",
+ "_id" : "worldEdges/1447011602",
+ "_key" : "1447011602",
+ "_rev" : "1447011602",
+ "_to" : "worldVertices/country-denmark",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-egypt",
+ "_id" : "worldEdges/1443079442",
+ "_key" : "1443079442",
+ "_rev" : "1443079442",
+ "_to" : "worldVertices/continent-africa",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/continent-south-america",
+ "_id" : "worldEdges/1436198162",
+ "_key" : "1436198162",
+ "_rev" : "1436198162",
+ "_to" : "worldVertices/world",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-chad",
+ "_id" : "worldEdges/1441506578",
+ "_key" : "1441506578",
+ "_rev" : "1441506578",
+ "_to" : "worldVertices/continent-africa",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-cairo",
+ "_id" : "worldEdges/1446618386",
+ "_key" : "1446618386",
+ "_rev" : "1446618386",
+ "_to" : "worldVertices/country-egypt",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-burkina-faso",
+ "_id" : "worldEdges/1440523538",
+ "_key" : "1440523538",
+ "_rev" : "1440523538",
+ "_to" : "worldVertices/continent-africa",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/continent-australia",
+ "_id" : "worldEdges/1435608338",
+ "_key" : "1435608338",
+ "_rev" : "1435608338",
+ "_to" : "worldVertices/world",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-luanda",
+ "_id" : "worldEdges/1448191250",
+ "_key" : "1448191250",
+ "_rev" : "1448191250",
+ "_to" : "worldVertices/country-angola",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-bosnia-and-herzegovina",
+ "_id" : "worldEdges/1439540498",
+ "_key" : "1439540498",
+ "_rev" : "1439540498",
+ "_to" : "worldVertices/continent-europe",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-prague",
+ "_id" : "worldEdges/1449764114",
+ "_key" : "1449764114",
+ "_rev" : "1449764114",
+ "_to" : "worldVertices/country-czech-republic",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-denmark",
+ "_id" : "worldEdges/1442686226",
+ "_key" : "1442686226",
+ "_rev" : "1442686226",
+ "_to" : "worldVertices/continent-europe",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-belgium",
+ "_id" : "worldEdges/1438950674",
+ "_key" : "1438950674",
+ "_rev" : "1438950674",
+ "_to" : "worldVertices/continent-europe",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-australia",
+ "_id" : "worldEdges/1437771026",
+ "_key" : "1437771026",
+ "_rev" : "1437771026",
+ "_to" : "worldVertices/continent-australia",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-tirana",
+ "_id" : "worldEdges/1451140370",
+ "_key" : "1451140370",
+ "_rev" : "1451140370",
+ "_to" : "worldVertices/country-albania",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-cote-d-ivoire",
+ "_id" : "worldEdges/1442096402",
+ "_key" : "1442096402",
+ "_rev" : "1442096402",
+ "_to" : "worldVertices/continent-africa",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-eritrea",
+ "_id" : "worldEdges/1443276050",
+ "_key" : "1443276050",
+ "_rev" : "1443276050",
+ "_to" : "worldVertices/continent-africa",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-brunei",
+ "_id" : "worldEdges/1440130322",
+ "_key" : "1440130322",
+ "_rev" : "1440130322",
+ "_to" : "worldVertices/continent-asia",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-andorra-la-vella",
+ "_id" : "worldEdges/1444455698",
+ "_key" : "1444455698",
+ "_rev" : "1444455698",
+ "_to" : "worldVertices/country-andorra",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-bridgetown",
+ "_id" : "worldEdges/1445831954",
+ "_key" : "1445831954",
+ "_rev" : "1445831954",
+ "_to" : "worldVertices/country-barbados",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-germany",
+ "_id" : "worldEdges/1443865874",
+ "_key" : "1443865874",
+ "_rev" : "1443865874",
+ "_to" : "worldVertices/continent-europe",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-zagreb",
+ "_id" : "worldEdges/1451926802",
+ "_key" : "1451926802",
+ "_rev" : "1451926802",
+ "_to" : "worldVertices/country-croatia",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-manama",
+ "_id" : "worldEdges/1448387858",
+ "_key" : "1448387858",
+ "_rev" : "1448387858",
+ "_to" : "worldVertices/country-bahrain",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-bolivia",
+ "_id" : "worldEdges/1439343890",
+ "_key" : "1439343890",
+ "_rev" : "1439343890",
+ "_to" : "worldVertices/continent-south-america",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-colombia",
+ "_id" : "worldEdges/1441899794",
+ "_key" : "1441899794",
+ "_rev" : "1441899794",
+ "_to" : "worldVertices/continent-south-america",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-canada",
+ "_id" : "worldEdges/1441309970",
+ "_key" : "1441309970",
+ "_rev" : "1441309970",
+ "_to" : "worldVertices/continent-north-america",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-saint-john-s",
+ "_id" : "worldEdges/1450157330",
+ "_key" : "1450157330",
+ "_rev" : "1450157330",
+ "_to" : "worldVertices/country-antigua-and-barbuda",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-kabul",
+ "_id" : "worldEdges/1447798034",
+ "_key" : "1447798034",
+ "_rev" : "1447798034",
+ "_to" : "worldVertices/country-afghanistan",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-france",
+ "_id" : "worldEdges/1443669266",
+ "_key" : "1443669266",
+ "_rev" : "1443669266",
+ "_to" : "worldVertices/continent-europe",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-sarajevo",
+ "_id" : "worldEdges/1450550546",
+ "_key" : "1450550546",
+ "_rev" : "1450550546",
+ "_to" : "worldVertices/country-bosnia-and-herzegovina",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-brasilia",
+ "_id" : "worldEdges/1445635346",
+ "_key" : "1445635346",
+ "_rev" : "1445635346",
+ "_to" : "worldVertices/country-brazil",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-vienna",
+ "_id" : "worldEdges/1451336978",
+ "_key" : "1451336978",
+ "_rev" : "1451336978",
+ "_to" : "worldVertices/country-austria",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-barbados",
+ "_id" : "worldEdges/1438754066",
+ "_key" : "1438754066",
+ "_rev" : "1438754066",
+ "_to" : "worldVertices/continent-north-america",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-canberra",
+ "_id" : "worldEdges/1446814994",
+ "_key" : "1446814994",
+ "_rev" : "1446814994",
+ "_to" : "worldVertices/country-australia",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-berlin",
+ "_id" : "worldEdges/1445242130",
+ "_key" : "1445242130",
+ "_rev" : "1445242130",
+ "_to" : "worldVertices/country-germany",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-sofia",
+ "_id" : "worldEdges/1450747154",
+ "_key" : "1450747154",
+ "_rev" : "1450747154",
+ "_to" : "worldVertices/country-bulgaria",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-afghanistan",
+ "_id" : "worldEdges/1436394770",
+ "_key" : "1436394770",
+ "_rev" : "1436394770",
+ "_to" : "worldVertices/continent-asia",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-brazil",
+ "_id" : "worldEdges/1439933714",
+ "_key" : "1439933714",
+ "_rev" : "1439933714",
+ "_to" : "worldVertices/continent-south-america",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-bahrain",
+ "_id" : "worldEdges/1438360850",
+ "_key" : "1438360850",
+ "_rev" : "1438360850",
+ "_to" : "worldVertices/continent-asia",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/continent-africa",
+ "_id" : "worldEdges/1435215122",
+ "_key" : "1435215122",
+ "_rev" : "1435215122",
+ "_to" : "worldVertices/world",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-la-paz",
+ "_id" : "worldEdges/1447994642",
+ "_key" : "1447994642",
+ "_rev" : "1447994642",
+ "_to" : "worldVertices/country-bolivia",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/capital-bujumbura",
+ "_id" : "worldEdges/1446421778",
+ "_key" : "1446421778",
+ "_rev" : "1446421778",
+ "_to" : "worldVertices/country-burundi",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-argentina",
+ "_id" : "worldEdges/1437574418",
+ "_key" : "1437574418",
+ "_rev" : "1437574418",
+ "_to" : "worldVertices/continent-south-america",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-austria",
+ "_id" : "worldEdges/1437967634",
+ "_key" : "1437967634",
+ "_rev" : "1437967634",
+ "_to" : "worldVertices/continent-europe",
+ "type" : "is-in"
+ },
+ {
+ "_from" : "worldVertices/country-ecuador",
+ "_id" : "worldEdges/1442882834",
+ "_key" : "1442882834",
+ "_rev" : "1442882834",
+ "_to" : "worldVertices/continent-south-america",
+ "type" : "is-in"
}
]
arangosh> examples.dropGraph("worldCountry");
diff --git a/Documentation/Examples/queryLimit.generated b/Documentation/Examples/queryLimit.generated
index de63b0e113..ce1dd2c440 100644
--- a/Documentation/Examples/queryLimit.generated
+++ b/Documentation/Examples/queryLimit.generated
@@ -1,48 +1,48 @@
arangosh> db.five.all().toArray();
[
{
- "name" : "two",
- "_id" : "five/2593004242",
- "_rev" : "2593004242",
- "_key" : "2593004242"
+ "_id" : "five/1489020178",
+ "_key" : "1489020178",
+ "_rev" : "1489020178",
+ "name" : "five"
},
{
- "name" : "one",
- "_id" : "five/2592807634",
- "_rev" : "2592807634",
- "_key" : "2592807634"
+ "_id" : "five/1488823570",
+ "_key" : "1488823570",
+ "_rev" : "1488823570",
+ "name" : "four"
},
{
- "name" : "five",
- "_id" : "five/2593594066",
- "_rev" : "2593594066",
- "_key" : "2593594066"
+ "_id" : "five/1488233746",
+ "_key" : "1488233746",
+ "_rev" : "1488233746",
+ "name" : "one"
},
{
- "name" : "four",
- "_id" : "five/2593397458",
- "_rev" : "2593397458",
- "_key" : "2593397458"
+ "_id" : "five/1488430354",
+ "_key" : "1488430354",
+ "_rev" : "1488430354",
+ "name" : "two"
},
{
- "name" : "three",
- "_id" : "five/2593200850",
- "_rev" : "2593200850",
- "_key" : "2593200850"
+ "_id" : "five/1488626962",
+ "_key" : "1488626962",
+ "_rev" : "1488626962",
+ "name" : "three"
}
]
arangosh> db.five.all().limit(2).toArray();
[
{
- "name" : "two",
- "_id" : "five/2593004242",
- "_rev" : "2593004242",
- "_key" : "2593004242"
+ "_id" : "five/1489020178",
+ "_key" : "1489020178",
+ "_rev" : "1489020178",
+ "name" : "five"
},
{
- "name" : "one",
- "_id" : "five/2592807634",
- "_rev" : "2592807634",
- "_key" : "2592807634"
+ "_id" : "five/1488823570",
+ "_key" : "1488823570",
+ "_rev" : "1488823570",
+ "name" : "four"
}
]
diff --git a/Documentation/Examples/querySkip.generated b/Documentation/Examples/querySkip.generated
index e8ec4d5189..7b4c5bb32c 100644
--- a/Documentation/Examples/querySkip.generated
+++ b/Documentation/Examples/querySkip.generated
@@ -1,48 +1,48 @@
arangosh> db.five.all().toArray();
[
{
- "name" : "four",
- "_id" : "five/2594839250",
- "_rev" : "2594839250",
- "_key" : "2594839250"
+ "_id" : "five/1489872146",
+ "_key" : "1489872146",
+ "_rev" : "1489872146",
+ "name" : "two"
},
{
- "name" : "two",
- "_id" : "five/2594446034",
- "_rev" : "2594446034",
- "_key" : "2594446034"
+ "_id" : "five/1490461970",
+ "_key" : "1490461970",
+ "_rev" : "1490461970",
+ "name" : "five"
},
{
- "name" : "three",
- "_id" : "five/2594642642",
- "_rev" : "2594642642",
- "_key" : "2594642642"
+ "_id" : "five/1489675538",
+ "_key" : "1489675538",
+ "_rev" : "1489675538",
+ "name" : "one"
},
{
- "name" : "one",
- "_id" : "five/2594249426",
- "_rev" : "2594249426",
- "_key" : "2594249426"
+ "_id" : "five/1490265362",
+ "_key" : "1490265362",
+ "_rev" : "1490265362",
+ "name" : "four"
},
{
- "name" : "five",
- "_id" : "five/2595035858",
- "_rev" : "2595035858",
- "_key" : "2595035858"
+ "_id" : "five/1490068754",
+ "_key" : "1490068754",
+ "_rev" : "1490068754",
+ "name" : "three"
}
]
arangosh> db.five.all().skip(3).toArray();
[
{
- "name" : "one",
- "_id" : "five/2594249426",
- "_rev" : "2594249426",
- "_key" : "2594249426"
+ "_id" : "five/1490265362",
+ "_key" : "1490265362",
+ "_rev" : "1490265362",
+ "name" : "four"
},
{
- "name" : "five",
- "_id" : "five/2595035858",
- "_rev" : "2595035858",
- "_key" : "2595035858"
+ "_id" : "five/1490068754",
+ "_key" : "1490068754",
+ "_rev" : "1490068754",
+ "name" : "three"
}
]
diff --git a/Documentation/Examples/usingToArray.generated b/Documentation/Examples/usingToArray.generated
index bd9e0a6b00..7571447623 100644
--- a/Documentation/Examples/usingToArray.generated
+++ b/Documentation/Examples/usingToArray.generated
@@ -1,36 +1,36 @@
arangosh> db._create("five")
-[ArangoCollection 2608929490, "five" (type document, status loaded)]
+[ArangoCollection 1504355602, "five" (type document, status loaded)]
arangosh> for (i = 0; i < 5; i++) db.five.save({value:i})
arangosh> db.five.toArray()
[
{
- "value" : 0,
- "_id" : "five/2609257170",
- "_rev" : "2609257170",
- "_key" : "2609257170"
+ "_id" : "five/1505273106",
+ "_key" : "1505273106",
+ "_rev" : "1505273106",
+ "value" : 3
},
{
- "value" : 2,
- "_id" : "five/2609650386",
- "_rev" : "2609650386",
- "_key" : "2609650386"
+ "_id" : "five/1504683282",
+ "_key" : "1504683282",
+ "_rev" : "1504683282",
+ "value" : 0
},
{
- "value" : 3,
- "_id" : "five/2609846994",
- "_rev" : "2609846994",
- "_key" : "2609846994"
+ "_id" : "five/1505076498",
+ "_key" : "1505076498",
+ "_rev" : "1505076498",
+ "value" : 2
},
{
- "value" : 4,
- "_id" : "five/2610043602",
- "_rev" : "2610043602",
- "_key" : "2610043602"
+ "_id" : "five/1504879890",
+ "_key" : "1504879890",
+ "_rev" : "1504879890",
+ "value" : 1
},
{
- "value" : 1,
- "_id" : "five/2609453778",
- "_rev" : "2609453778",
- "_key" : "2609453778"
+ "_id" : "five/1505469714",
+ "_key" : "1505469714",
+ "_rev" : "1505469714",
+ "value" : 4
}
]
diff --git a/Documentation/Examples/working_with_date_time.generated b/Documentation/Examples/working_with_date_time.generated
index 4d5227e2e5..b3eb5f861c 100644
--- a/Documentation/Examples/working_with_date_time.generated
+++ b/Documentation/Examples/working_with_date_time.generated
@@ -1,28 +1,28 @@
arangosh> db._create("exampleTime");
-[ArangoCollection 2610305746, "exampleTime" (type document, status loaded)]
+[ArangoCollection 1505731858, "exampleTime" (type document, status loaded)]
arangosh> var timestamps = ["2014-05-07T14:19:09.522","2014-05-07T21:19:09.522","2014-05-08T04:19:09.522","2014-05-08T11:19:09.522","2014-05-08T18:19:09.522"];
arangosh> for (i = 0; i < 5; i++) db.exampleTime.save({value:i, ts: timestamps[i]})
arangosh> db._query("FOR d IN exampleTime FILTER d.ts > '2014-05-07T14:19:09.522' and d.ts < '2014-05-08T18:19:09.522' RETURN d").toArray()
[
{
- "value" : 1,
- "ts" : "2014-05-07T21:19:09.522",
- "_id" : "exampleTime/2610895570",
- "_rev" : "2610895570",
- "_key" : "2610895570"
- },
- {
- "value" : 2,
- "ts" : "2014-05-08T04:19:09.522",
- "_id" : "exampleTime/2611092178",
- "_rev" : "2611092178",
- "_key" : "2611092178"
- },
- {
- "value" : 3,
+ "_id" : "exampleTime/1506714898",
+ "_key" : "1506714898",
+ "_rev" : "1506714898",
"ts" : "2014-05-08T11:19:09.522",
- "_id" : "exampleTime/2611288786",
- "_rev" : "2611288786",
- "_key" : "2611288786"
+ "value" : 3
+ },
+ {
+ "_id" : "exampleTime/1506518290",
+ "_key" : "1506518290",
+ "_rev" : "1506518290",
+ "ts" : "2014-05-08T04:19:09.522",
+ "value" : 2
+ },
+ {
+ "_id" : "exampleTime/1506321682",
+ "_key" : "1506321682",
+ "_rev" : "1506321682",
+ "ts" : "2014-05-07T21:19:09.522",
+ "value" : 1
}
]