1
0
Fork 0

added derived file

This commit is contained in:
Jan Steemann 2014-12-08 11:23:53 +01:00
parent 23203a5437
commit a018ccaed7
1 changed files with 3 additions and 10 deletions

View File

@ -4518,21 +4518,14 @@ Graph.prototype._removeVertexCollection = function(vertexCollectionName, dropCol
///
/// @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 graph = examples.loadGraph("routeplanner");
/// graph._neighbors({isCapital : true});
/// graph._getConnectingEdges({isCapital : true}, {isCapital : true});
/// @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
//