mirror of https://gitee.com/bigwinds/arangodb
69 lines
1.5 KiB
Plaintext
69 lines
1.5 KiB
Plaintext
arangosh> var examples = require("org/arangodb/graph-examples/example-graph.js");
|
|
arangosh> var g = examples.loadGraph("routeplanner");
|
|
arangosh> g._shortestPath({}, {}, {weight : 'distance', endVertexCollectionRestriction : 'frenchCity',
|
|
........> startVertexCollectionRestriction : 'germanCity'});
|
|
[
|
|
[
|
|
{
|
|
"vertices" : [
|
|
"germanCity/Berlin",
|
|
"frenchCity/Paris"
|
|
],
|
|
"edges" : [
|
|
"internationalHighway/1749808011"
|
|
],
|
|
"distance" : 1
|
|
},
|
|
{
|
|
"vertices" : [
|
|
"germanCity/Berlin",
|
|
"frenchCity/Lyon"
|
|
],
|
|
"edges" : [
|
|
"internationalHighway/1749611403"
|
|
],
|
|
"distance" : 1
|
|
},
|
|
{
|
|
"vertices" : [
|
|
"germanCity/Hamburg",
|
|
"frenchCity/Paris"
|
|
],
|
|
"edges" : [
|
|
"internationalHighway/1750004619"
|
|
],
|
|
"distance" : 1
|
|
},
|
|
{
|
|
"vertices" : [
|
|
"germanCity/Hamburg",
|
|
"frenchCity/Lyon"
|
|
],
|
|
"edges" : [
|
|
"internationalHighway/1750201227"
|
|
],
|
|
"distance" : 1
|
|
},
|
|
{
|
|
"vertices" : [
|
|
"germanCity/Cologne",
|
|
"frenchCity/Paris"
|
|
],
|
|
"edges" : [
|
|
"internationalHighway/1750594443"
|
|
],
|
|
"distance" : 1
|
|
},
|
|
{
|
|
"vertices" : [
|
|
"germanCity/Cologne",
|
|
"frenchCity/Lyon"
|
|
],
|
|
"edges" : [
|
|
"internationalHighway/1750397835"
|
|
],
|
|
"distance" : 1
|
|
}
|
|
]
|
|
]
|