SELECT out('EA').in('EC') FROM A

The result is correct but I want to have a table like
A.ID, B.ID, C.ID

_______________________________________________________________________________________________________________________________________________________________________________________

This problem I could solve in neo4j by doing the query

MATCH (aTopic:Topic)-[:EA]-(bTopic)-[:EC]-(cTopic) where aTopic.name = 'a2' 
return aTopic.name, bTopic.name, cTopic.name
aTopic.namebTopic.namecTopic.namea2b1c1a2b1c2a2b2c3
Returned 3 rows in 47 ms


Best Regards,
Ryan

-- 

--- 
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