Hi Simon, if you have to do it via SQL, you can do the following, using document queries:
UPDATE VertexFromClass remove out_EdgeClass = <edgeRid> where <something to select your original vertex> UPDATE EdgeClass set out = VertexToClass where <something to select the edge> UPDATE VertexToClass add out_EdgeClass = <edgeRid> where <something to select your destination vertex> Of course if you have to update the "out" just invert 'out' and 'in' in the statements Thanks Luigi 2016-04-21 7:20 GMT+02:00 'scott molinari' via OrientDB < [email protected]>: > UPDATE EDGE is a reality as of version 2.2! :) > > http://orientdb.com/docs/2.1/SQL-Update-Edge.html > > Scott > > -- > > --- > 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.
