This is a small part of my graph,every vertex may has a parent and children.
my case : we have a start vertex,then we need to find other verties have the same parent with the start vertex.
In old version,we can do this by an aql: for sv in subject filter v.name="C3" for v,e,p in 2 any sv outbound r_parent,inbound r_parent return p
But,in version 3.0.4 the same aql cannot work as before,just got a exception message "conflicting directions specified for collection".
It's a new feature!
But,I think it's an bug.