Github user jorgebay commented on the issue:
https://github.com/apache/tinkerpop/pull/922
Glad to see you working on this @mattallenuk !
In line with what @spmallette was mentioning, I think we need expose a
similar API as the rest of GLVs. Python GLV is a good example (because its a
scripting language as JavaScript) but if you have some understanding of C#, you
can check out gremlin-dotnet as well.
Besides the `RemoteConnection` the other GLVs expose a `Client` (one
abstraction above), that is able to submit traversals in bytecode or in script
to evaluate, you can reading here:
-
https://github.com/apache/tinkerpop/blob/tp32/gremlin-python/src/main/jython/gremlin_python/driver/client.py
-
https://github.com/apache/tinkerpop/blob/tp32/gremlin-python/src/main/jython/tests/driver/test_client.py#L39-L48
---