I want to be able to exclude certain vertices from an OrientDB traverse query.
For example,
traverse * from (select from Location where ID = '1234')
will traverse all vertex classes at a starting point. I need a way to add exclusions for specific classes.
I know this could be possible if I didn't use the * operator and instead specify all of the classes I do want. However, it would not be suitable because there will be classes my program isn't even aware of. The data is ever changing but the classes to exclude will always be present.


