I ran these codes:
g.V().has("name", "Jones").union(g.of().bothE("knows").inV()).values()
g.V().has("name", "Jones").union(g.of().bothE("knows").otherV()).values()
The first one returns correctly, but brings Jones too. The second one throws an exception, that is shown bellow:
Path tracking is not supported by this Traverser: class com.tinkerpop.gremlin.process.traversers.SimpleTraverser
Could anyone help me with this issue?
Thanks, Celso