How is it possible to create an edge for creating a relationship between *person *and *post*.
CREATE edge hasAppln FROM (select FROM person) TO (select FROM post) I already tried it with CREATE edge hasAppln FROM (select FROM person) TO (select FROM post) where person.id = post.id but it just combines everything. Let's say I have in both table 2 entries, so I get 4 edges. The Where is completely ignored somehow. Another thing is that this query on 4 entries takes 0,2 seconds. So this is not practicable. Is there another way to do that? -- --- 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.
