this works:
- gremlin> t=new Table();v = g.v(2);v.outE.inV.as('node')[0..5].table(t);
- ==> v[95]
- ==> v[94]
- ==> v[93]
- ==> v[92]
- ==> v[91]
- ==> v[90]
- gremlin> t
- ==> [node:v[95]]
- ==> [node:v[94]]
- ==> [node:v[93]]
- ==> [node:v[92]]
- ==> [node:v[91]]
- ==> [node:v[90]]
While this gives no results:
t=new Table();v = g.v(2);v.outE.inV.as('node')[0..5].table(t); t;
Why?
Many thanks!
_______________________________________________
Neo4j mailing list
[email protected]
https://lists.neo4j.org/mailman/listinfo/user