When I execute the following script, I cannot get the contents stored in table.
t=new
Table;
g.v(55).out('KNOWS') .as('DOC').table
;t
But
when I try to execute the below mentioned Gremlin Script
t=new Table;g.v(55).out('KNOWS') .as('DOC').table
;
in the console and press enter
and then I am trying to get the values stored in the table by specifying
t;
I am able to get the value stored in table.
Please Clarify....
Thanks
Vijay