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 a032439 commit df85724Copy full SHA for df85724
src/main/java/com/arangodb/entity/BaseEdgeDocument.java
@@ -41,6 +41,12 @@ public BaseEdgeDocument() {
41
super();
42
}
43
44
+ public BaseEdgeDocument(final String from, final String to) {
45
+ super();
46
+ this.from = from;
47
+ this.to = to;
48
+ }
49
+
50
public BaseEdgeDocument(final Map<String, Object> properties) {
51
super(properties);
52
final Object tmpFrom = properties.remove(DocumentField.Type.FROM.getSerializeName());
0 commit comments