Hi,
I am implementing a Provider for ArangoDB. I have implemented the structure
package interfaces and after running most of the TestSuite Iam happy with
the result.
Now, if I want an ArangoDBGraph to be modified/queried via the
GraphTraversal API, e.g.
g.addVertex(...
do I also have to implement the process package interfaces?
And, from Java, once you have a traversal, how do you actually execute it?
E.g.
g.addVertex("someLabel").property("name", "Marko").<what goes here?>;
I have read that it is either iterate(),next(), toList()?
Thanks,