Hi Marko (again),
Indeed on TP3.2 the project step alternative works:
gremlin> g.V().project('a','b').by('name').by(label).select(values)
==>[marko,person]
==>[vadas,person]
==>[lop,software]
==>[josh,person]
==>[ripple,software]
==>[peter,person]
Also,
gremlin> g.V().values('name','age') gives:
==>marko
==>29
==>vadas
==>27
==>lop
==>josh
==>32
==>ripple
==>peter
==>35
So,even if g.V().values(label, 'age') were allowed, it would not give the result you can get with project(); no issue left.
Cheers, Marc
Op dinsdag 4 oktober 2016 17:39:11 UTC+2 schreef HadoopMarc: