mirror of https://gitee.com/bigwinds/arangodb
14 lines
408 B
Plaintext
14 lines
408 B
Plaintext
arangosh> var examples = require("org/arangodb/graph-examples/example-graph.js");
|
|
arangosh> var g = examples.loadGraph("routeplanner");
|
|
arangosh> g._shortestPath([{_id: 'germanCity/Cologne'},{_id: 'germanCity/Munich'}], 'frenchCity/Lyon',
|
|
........> {weight : 'distance'});
|
|
[
|
|
[
|
|
{
|
|
"vertex" : "frenchCity/Lyon",
|
|
"distance" : 700,
|
|
"startVertex" : "germanCity/Cologne"
|
|
}
|
|
]
|
|
]
|