Gremlin Query doesn't return the value stored in the table

18 views
Skip to first unread message

Vijay

unread,
Aug 2, 2012, 11:23:27 AM8/2/12
to ne...@googlegroups.com
Hi,

  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

Marko Rodriguez

unread,
Aug 2, 2012, 12:38:04 PM8/2/12
to ne...@googlegroups.com
Do:

g.v(55).out('KNOWS') .as('DOC').table.iterate()

Marko.
Reply all
Reply to author
Forward
0 new messages