1
0
Fork 0
arangodb/Documentation/Examples/generalGraphNeighbors2.gene...

281 lines
7.1 KiB
Plaintext

arangosh> var examples = require("org/arangodb/graph-examples/example-graph.js");
arangosh> var g = examples.loadGraph("routeplanner");
arangosh> db._query("FOR e IN GRAPH_NEIGHBORS("
........> +"'routeplanner', 'germanCity/Hamburg', {direction : 'outbound', maxDepth : 2}) RETURN e"
........> ).toArray();
[
{
"vertex" : {
"_id" : "germanCity/Cologne",
"_key" : "Cologne",
"_rev" : "1103569973",
"isCapital" : false,
"population" : 1000000
},
"path" : {
"edges" : [
{
"_id" : "germanHighway/1105077301",
"_key" : "1105077301",
"_rev" : "1105077301",
"_from" : "germanCity/Hamburg",
"_to" : "germanCity/Cologne",
"distance" : 500
}
],
"vertices" : [
{
"_id" : "germanCity/Hamburg",
"_key" : "Hamburg",
"_rev" : "1103766581",
"isCapital" : false,
"population" : 1000000
},
{
"_id" : "germanCity/Cologne",
"_key" : "Cologne",
"_rev" : "1103569973",
"isCapital" : false,
"population" : 1000000
}
]
},
"startVertex" : "germanCity/Hamburg"
},
{
"vertex" : {
"_id" : "frenchCity/Lyon",
"_key" : "Lyon",
"_rev" : "1104159797",
"isCapital" : false,
"population" : 80000
},
"path" : {
"edges" : [
{
"_id" : "germanHighway/1105077301",
"_key" : "1105077301",
"_rev" : "1105077301",
"_from" : "germanCity/Hamburg",
"_to" : "germanCity/Cologne",
"distance" : 500
},
{
"_id" : "internationalHighway/1106519093",
"_key" : "1106519093",
"_rev" : "1106519093",
"_from" : "germanCity/Cologne",
"_to" : "frenchCity/Lyon",
"distance" : 700
}
],
"vertices" : [
{
"_id" : "germanCity/Hamburg",
"_key" : "Hamburg",
"_rev" : "1103766581",
"isCapital" : false,
"population" : 1000000
},
{
"_id" : "germanCity/Cologne",
"_key" : "Cologne",
"_rev" : "1103569973",
"isCapital" : false,
"population" : 1000000
},
{
"_id" : "frenchCity/Lyon",
"_key" : "Lyon",
"_rev" : "1104159797",
"isCapital" : false,
"population" : 80000
}
]
},
"startVertex" : "germanCity/Hamburg"
},
{
"vertex" : {
"_id" : "frenchCity/Paris",
"_key" : "Paris",
"_rev" : "1104356405",
"isCapital" : true,
"population" : 4000000
},
"path" : {
"edges" : [
{
"_id" : "germanHighway/1105077301",
"_key" : "1105077301",
"_rev" : "1105077301",
"_from" : "germanCity/Hamburg",
"_to" : "germanCity/Cologne",
"distance" : 500
},
{
"_id" : "internationalHighway/1106715701",
"_key" : "1106715701",
"_rev" : "1106715701",
"_from" : "germanCity/Cologne",
"_to" : "frenchCity/Paris",
"distance" : 550
}
],
"vertices" : [
{
"_id" : "germanCity/Hamburg",
"_key" : "Hamburg",
"_rev" : "1103766581",
"isCapital" : false,
"population" : 1000000
},
{
"_id" : "germanCity/Cologne",
"_key" : "Cologne",
"_rev" : "1103569973",
"isCapital" : false,
"population" : 1000000
},
{
"_id" : "frenchCity/Paris",
"_key" : "Paris",
"_rev" : "1104356405",
"isCapital" : true,
"population" : 4000000
}
]
},
"startVertex" : "germanCity/Hamburg"
},
{
"vertex" : {
"_id" : "frenchCity/Paris",
"_key" : "Paris",
"_rev" : "1104356405",
"isCapital" : true,
"population" : 4000000
},
"path" : {
"edges" : [
{
"_id" : "internationalHighway/1106125877",
"_key" : "1106125877",
"_rev" : "1106125877",
"_from" : "germanCity/Hamburg",
"_to" : "frenchCity/Paris",
"distance" : 900
}
],
"vertices" : [
{
"_id" : "germanCity/Hamburg",
"_key" : "Hamburg",
"_rev" : "1103766581",
"isCapital" : false,
"population" : 1000000
},
{
"_id" : "frenchCity/Paris",
"_key" : "Paris",
"_rev" : "1104356405",
"isCapital" : true,
"population" : 4000000
}
]
},
"startVertex" : "germanCity/Hamburg"
},
{
"vertex" : {
"_id" : "frenchCity/Lyon",
"_key" : "Lyon",
"_rev" : "1104159797",
"isCapital" : false,
"population" : 80000
},
"path" : {
"edges" : [
{
"_id" : "internationalHighway/1106125877",
"_key" : "1106125877",
"_rev" : "1106125877",
"_from" : "germanCity/Hamburg",
"_to" : "frenchCity/Paris",
"distance" : 900
},
{
"_id" : "frenchHighway/1105404981",
"_key" : "1105404981",
"_rev" : "1105404981",
"_from" : "frenchCity/Paris",
"_to" : "frenchCity/Lyon",
"distance" : 550
}
],
"vertices" : [
{
"_id" : "germanCity/Hamburg",
"_key" : "Hamburg",
"_rev" : "1103766581",
"isCapital" : false,
"population" : 1000000
},
{
"_id" : "frenchCity/Paris",
"_key" : "Paris",
"_rev" : "1104356405",
"isCapital" : true,
"population" : 4000000
},
{
"_id" : "frenchCity/Lyon",
"_key" : "Lyon",
"_rev" : "1104159797",
"isCapital" : false,
"population" : 80000
}
]
},
"startVertex" : "germanCity/Hamburg"
},
{
"vertex" : {
"_id" : "frenchCity/Lyon",
"_key" : "Lyon",
"_rev" : "1104159797",
"isCapital" : false,
"population" : 80000
},
"path" : {
"edges" : [
{
"_id" : "internationalHighway/1106322485",
"_key" : "1106322485",
"_rev" : "1106322485",
"_from" : "germanCity/Hamburg",
"_to" : "frenchCity/Lyon",
"distance" : 1300
}
],
"vertices" : [
{
"_id" : "germanCity/Hamburg",
"_key" : "Hamburg",
"_rev" : "1103766581",
"isCapital" : false,
"population" : 1000000
},
{
"_id" : "frenchCity/Lyon",
"_key" : "Lyon",
"_rev" : "1104159797",
"isCapital" : false,
"population" : 80000
}
]
},
"startVertex" : "germanCity/Hamburg"
}
]