mirror of https://gitee.com/bigwinds/arangodb
12 lines
403 B
Plaintext
12 lines
403 B
Plaintext
arangosh> var examples = require("org/arangodb/graph-examples/example-graph.js");
|
|
arangosh> var graph = examples.loadGraph("routeplanner");
|
|
arangosh> graph._absoluteEccentricity({}, {startVertexCollectionRestriction : 'germanCity',
|
|
........> direction : 'outbound', weight : 'distance'});
|
|
[
|
|
{
|
|
"germanCity/Hamburg" : 1200,
|
|
"germanCity/Berlin" : 1200,
|
|
"germanCity/Cologne" : 700
|
|
}
|
|
]
|