mirror of https://gitee.com/bigwinds/arangodb
13 lines
463 B
Plaintext
13 lines
463 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_CLOSENESS("
|
|
........> + "'routeplanner', {}, {startVertexCollectionRestriction : 'germanCity', " +
|
|
........> "direction : 'outbound', weight : 'distance'})").toArray();
|
|
[
|
|
{
|
|
"germanCity/Berlin" : 3550,
|
|
"germanCity/Hamburg" : 2600,
|
|
"germanCity/Cologne" : 1250
|
|
}
|
|
]
|