mirror of https://gitee.com/bigwinds/arangodb
Reverted API name change on _getConnectingEdges
This commit is contained in:
parent
7aa2a9d4c7
commit
db0dcd5579
|
@ -858,7 +858,7 @@ If this edge is used as a vertex by another edge, the other edge will be removed
|
|||
|
||||
Get all connecting edges between 2 groups of vertices defined by the examples
|
||||
|
||||
`graph._connectingEdges(vertexExample, vertexExample2, options)`
|
||||
`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.
|
||||
|
|
|
@ -1757,7 +1757,7 @@ class Graph {
|
|||
// / @brief was docuBlock JSF_general_graph_connectingEdges
|
||||
// //////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
_connectingEdges (vertexExample1, vertexExample2, options) {
|
||||
_getConnectingEdges (vertexExample1, vertexExample2, options) {
|
||||
options = options || {};
|
||||
if (options.vertex1CollectionRestriction) {
|
||||
if (!Array.isArray(options.vertex1CollectionRestriction)) {
|
||||
|
|
Loading…
Reference in New Issue