diff --git a/Documentation/Books/Manual/Graphs/GeneralGraphs/Management.md b/Documentation/Books/Manual/Graphs/GeneralGraphs/Management.md index 7db6a0e696..bd77e8bd77 100644 --- a/Documentation/Books/Manual/Graphs/GeneralGraphs/Management.md +++ b/Documentation/Books/Manual/Graphs/GeneralGraphs/Management.md @@ -851,47 +851,3 @@ If this edge is used as a vertex by another edge, the other edge will be removed ~ examples.dropGraph("social"); @END_EXAMPLE_ARANGOSH_OUTPUT @endDocuBlock generalGraphEdgeCollectionRemove - - - -### Connect edges - - - -Get all connecting edges between 2 groups of vertices defined by the examples - -`graph._getConnectingEdges(vertexExample, vertexExample2, options)` - -The function accepts an id, an example, a list of examples or even an empty -example as parameter for vertexExample. - - -**Parameters** - -* vertexExample1 (optional) See [Definition of examples](Functions.md#definition-of-examples) -* vertexExample2 (optional) See [Definition of examples](Functions.md#definition-of-examples) -* options (optional) An object defining further options. Can have the following values: - * *edgeExamples*: Filter the edges, see [Definition of examples](Functions.md#definition-of-examples) - * *edgeCollectionRestriction* : One or a list of edge-collection names that should be - considered to be on the path. - * *vertex1CollectionRestriction* : One or a list of vertex-collection names that should be - considered on the intermediate vertex steps. - * *vertex2CollectionRestriction* : One or a list of vertex-collection names that should be - considered on the intermediate vertex steps. - - -**Examples** - - -A route planner example, all connecting edges between capitals. - - @startDocuBlockInline generalGraphModuleConnectingEdges1 - @EXAMPLE_ARANGOSH_OUTPUT{generalGraphModuleConnectingEdges1} - var examples = require("@arangodb/graph-examples/example-graph.js"); - var graph = examples.loadGraph("routeplanner"); - graph._getConnectingEdges({isCapital : true}, {isCapital : true}); - ~ examples.dropGraph("routeplanner"); - @END_EXAMPLE_ARANGOSH_OUTPUT - @endDocuBlock generalGraphModuleConnectingEdges1 - - diff --git a/Documentation/Examples/generalGraphModuleConnectingEdges1.generated b/Documentation/Examples/generalGraphModuleConnectingEdges1.generated deleted file mode 100644 index 7842412e1d..0000000000 --- a/Documentation/Examples/generalGraphModuleConnectingEdges1.generated +++ /dev/null @@ -1,4 +0,0 @@ -arangosh> var examples = require("@arangodb/graph-examples/example-graph.js"); -arangosh> var graph = examples.loadGraph("routeplanner"); -arangosh> graph._getConnectingEdges({isCapital : true}, {isCapital : true}); -[ ]