Frage

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?

Keine korrekte Lösung

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top