Apache TinkerPop

AT

Apache TinkerPop

Apache TinkerPop is an open source graph computing framework and the home of the Gremlin graph query language.

Join

get() on a List

In Gremlin how does one do a get() on a List in order to access an item by index?
Solution:
Gremlin doesn't have get() but you can accomplish similar things with the range(), limit(), tail(), and skip(): ``` gremlin> g.inject([10,20,30,40,50]).limit(local,1) ==>10 gremlin> g.inject([10,20,30,40,50]).tail(local,1)...