Hi,

create class TestV extends V
create class TestE extends E


create vertex TestV set name = 'test1'
create vertex TestV set name = 'test2'
create vertex TestV set name = 'test3'

create edge TestE from (select from TestV where name = 'test1') to (select 
from TestV where name = 'test2')
create edge TestE from (select from TestV where name = 'test2') to (select 
from TestV where name = 'test3')



select $all, $current from TestV
let $all = (traverse out('TestE') from $current )


select $all, $current from TestV
let $all = (traverse out('TestE') from (select from TestV where name = 
'test1') )


The first query does not return the expected and the second query shows 
that the first should work.
Is there a problem with *$current *here, or am I doing something wrong?

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"OrientDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to