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