mirror of https://gitee.com/bigwinds/arangodb
added derived file
This commit is contained in:
parent
23203a5437
commit
a018ccaed7
|
@ -4518,21 +4518,14 @@ Graph.prototype._removeVertexCollection = function(vertexCollectionName, dropCol
|
||||||
///
|
///
|
||||||
/// @EXAMPLES
|
/// @EXAMPLES
|
||||||
///
|
///
|
||||||
/// A route planner example, all neighbors of capitals.
|
/// A route planner example, all connecting edges between capitals.
|
||||||
///
|
///
|
||||||
/// @EXAMPLE_ARANGOSH_OUTPUT{generalGraphModuleNeighbors1}
|
/// @EXAMPLE_ARANGOSH_OUTPUT{generalGraphModuleConnectingEdges1}
|
||||||
/// var examples = require("org/arangodb/graph-examples/example-graph.js");
|
/// var examples = require("org/arangodb/graph-examples/example-graph.js");
|
||||||
/// var graph = examples.loadGraph("routeplanner");
|
/// var graph = examples.loadGraph("routeplanner");
|
||||||
/// graph._neighbors({isCapital : true});
|
/// graph._getConnectingEdges({isCapital : true}, {isCapital : true});
|
||||||
/// @END_EXAMPLE_ARANGOSH_OUTPUT
|
/// @END_EXAMPLE_ARANGOSH_OUTPUT
|
||||||
///
|
///
|
||||||
/// A route planner example, all outbound neighbors of Hamburg.
|
|
||||||
///
|
|
||||||
/// @EXAMPLE_ARANGOSH_OUTPUT{generalGraphModuleNeighbors2}
|
|
||||||
/// var examples = require("org/arangodb/graph-examples/example-graph.js");
|
|
||||||
/// var graph = examples.loadGraph("routeplanner");
|
|
||||||
/// graph._neighbors('germanCity/Hamburg', {direction : 'outbound', maxDepth : 2});
|
|
||||||
/// @END_EXAMPLE_ARANGOSH_OUTPUT
|
|
||||||
///
|
///
|
||||||
/// @endDocuBlock
|
/// @endDocuBlock
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue