AQL 1:
 for v,e,p in 1..3 any "test_vertex/213124123123" relation_default
  filter e._type=="typeOne"
 return p
AQL 2:
  for v,e,p in 1..3 any "test_vertex/213124123123" relation_default
  filter p.edges[*]._type all in ["typeOne"]
 return p

AQL 1 return paths that not all edge matches the filter _type=="typeOne".
but AQL 2 done.

why filter on e looks like has no effect?

-- 
You received this message because you are subscribed to the Google Groups 
"ArangoDB" 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