We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d8330f commit 30c109fCopy full SHA for 30c109f
src/main/java/com/arangodb/ArangoDriver.java
@@ -5254,6 +5254,10 @@ public <T> EdgeCursor<T> graphGetEdgeCursor(
5254
GraphEdgesOptions graphEdgesOptions,
5255
AqlQueryOptions aqlQueryOptions) throws ArangoException {
5256
5257
+ if (graphEdgesOptions == null) {
5258
+ graphEdgesOptions = new GraphEdgesOptions();
5259
+ }
5260
+
5261
validateCollectionName(graphName);
5262
5263
String query = "for i in graph_edges(@graphName, @vertexExample, @options) return i";
0 commit comments