Hi all, Currently, it is possible to send a Traversal from the Java GLV using Client. For example,
final Graph graph = TinkerGraph.open(); final GraphTraversalSource g = graph.traversal(); final Client aliased = client.alias("gmodern"); final ResultSet resultSetUnrolled = aliased.submit(g.V()); The problem is that this is equivalent to submitting a bytecode which will be removed in TP4. I'm thinking of removing this confusing function. The Client is designed to send string Gremlin queries, but for Traversals, DriverRemoteConnection should be used instead. If you want to keep `Client.submit(Traversal)`, then do not hesitate to say in the next 72 hours. Regards, Valentyn