orientechnologies / orientdb-gremlin

TinkerPop3 Graph Structure Implementation for OrientDB
Apache License 2.0
92 stars 32 forks source link

hasLabel filtering should be able to filter OrientDB classes with inheritance model #156

Open kevmegforest opened 5 years ago

kevmegforest commented 5 years ago

For example i have this orientdb schema class inheritance

V -> VHeating -> VHeating_Elect
              -> VHeating_Gaz

In a traversal doing the step filter hasLabel("VHeating") should give me vertex from the 2 child classes (Elect and Gaz)

Now it gives only things that are only "VHeating"