@@ -871,47 +871,3 @@ If this edge is used as a vertex by another edge, the other edge will be removed
871
871
~ examples.dropGraph("social");
872
872
@END_EXAMPLE_ARANGOSH_OUTPUT
873
873
@endDocuBlock generalGraphEdgeCollectionRemove
874
-
875
-
876
-
877
- ### Connect edges
878
-
879
-
880
-
881
- Get all connecting edges between 2 groups of vertices defined by the examples
882
-
883
- ` graph._getConnectingEdges(vertexExample, vertexExample2, options) `
884
-
885
- The function accepts an id, an example, a list of examples or even an empty
886
- example as parameter for vertexExample.
887
-
888
-
889
- ** Parameters**
890
-
891
- * vertexExample1 (optional) See [ Definition of examples] ( Functions.md#definition-of-examples )
892
- * vertexExample2 (optional) See [ Definition of examples] ( Functions.md#definition-of-examples )
893
- * options (optional) An object defining further options. Can have the following values:
894
- * * edgeExamples* : Filter the edges, see [ Definition of examples] ( Functions.md#definition-of-examples )
895
- * * edgeCollectionRestriction* : One or a list of edge-collection names that should be
896
- considered to be on the path.
897
- * * vertex1CollectionRestriction* : One or a list of vertex-collection names that should be
898
- considered on the intermediate vertex steps.
899
- * * vertex2CollectionRestriction* : One or a list of vertex-collection names that should be
900
- considered on the intermediate vertex steps.
901
-
902
-
903
- ** Examples**
904
-
905
-
906
- A route planner example, all connecting edges between capitals.
907
-
908
- @startDocuBlockInline generalGraphModuleConnectingEdges1
909
- @EXAMPLE_ARANGOSH_OUTPUT{generalGraphModuleConnectingEdges1}
910
- var examples = require("@arangodb/graph-examples/example-graph.js");
911
- var graph = examples.loadGraph("routeplanner");
912
- graph._getConnectingEdges({isCapital : true}, {isCapital : true});
913
- ~ examples.dropGraph("routeplanner");
914
- @END_EXAMPLE_ARANGOSH_OUTPUT
915
- @endDocuBlock generalGraphModuleConnectingEdges1
916
-
917
-
0 commit comments