I am using DSE Java Driver v1.7. In those docs, it appears that somehow `GraphTraversal` does not have any type parameters:
GraphTraversal traversal = g.V().has("name", "marko"); // Java-based Gremlin Traversal API, more comfortable than a String
However, looking at docs for Java Driver 4.9, they do:
GraphTraversal<Vertex, Vertex> traversal = g.V().has("name", "marko");
When looking at the Tinkerpop docs, it looks like there should be type parameters specified. From their java docs:
Interface GraphTraversal<S,E>
Is it just that the DSE java driver 1.7 docs are incorrect? Or where they referring to a different interface than what I linked to in the Tinkerpop docs?