But it does exist as a property of the in and out Vertices.  I think the 
trouble is that users do not know how to delete an edge using SQL.  It 
would be beneficial to have a way to do this - possibly using the same 
syntax as non-lightweight Edges:

Given the following:

create class A extends V
create class B extends V
create class AtoB extends E

create Vertex A set name = 'a'
create Vertex B set name = 'b'
create Edge AtoB from ( select from A ) to ( select from B )

This will work:
update A remove out_AtoB
update B remove in_AtoB

But it would be nice if the the same syntax would work for lightweight and 
non-lightweight edges

//Note that this does not work for lightweight edges
delete Edge SomeEdgeType from A to B

-- 

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