Question

The following command works

t = new Table(); g.V.as('id').as('properties').table(t){it.id}{it.map}
print t

The following command works

t = new Table();
g.V.as('id').as('properties').table(t){it.id}{it.map}; print t

The following command doesn't work

t = new Table(); g.V.as('id').as('properties').table(t){it.id}{it.map}; print t

Why?

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top