Hi,
There is problem with edge inheritance in OrientDB 1.7-SNAPSHOT.
This is my schema:
create class User extends V;
create class Place extends V;
create class ParentE extends E;
create class ChildE extends ParentE;
create vertex User set id="1";
create vertex Place set id="2";
create edge ChildE from (select from User where id="1") to (select from
Place where id="2");
When I want to query all outgoing edges from User class I must use child
edge label, but I think this should be possible with parent label.
Example:
This query works (one result):
select out('ChildE') from User;
But this don't (no results):
select out('ParentE') from User;
Is this supported? If not, don't you think this would be nice to have
feature?
What do you think about this?
--
---
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/groups/opt_out.