Hi, I'm not sure of what you want to achieve, but can try this:
select @class, out().@class as outClass from YourClass where <some where conditions here> in 2.1 rc3 you can expand the outClass collection with UNWIND operator and have a single row for each edge: select @class, out().@class as outClass from YourClass where <some where conditions here> UNWIND outClass Luigi 2015-05-28 15:31 GMT+02:00 Елена Сиротина <[email protected]>: > Excuse me, I started to work with OrientDB and pyorient not long ago. I > have a graph database, and I'm eager to know what query should I write to > get: (@class, out_edge @class_which _the _first _class connected with)? > > -- > > --- > 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. > -- --- 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.
