You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Interactive engine already supports submit a script to query the remote graph, which syntax is like: interactive.execute("g.V().count()").result().one().
However, there is also another bytecode-based style to query a graph, which should also be supported, as follows: g.V().count().toList().
We should support bytecode-based style as it's the recommended style by Tinkerpop.
The text was updated successfully, but these errors were encountered:
Interactive engine already supports submit a script to query the remote graph, which syntax is like:
interactive.execute("g.V().count()").result().one()
.However, there is also another bytecode-based style to query a graph, which should also be supported, as follows:
g.V().count().toList()
.We should support bytecode-based style as it's the recommended style by Tinkerpop.
The text was updated successfully, but these errors were encountered: