Hi n4j folks,
I have a question regarding cypher syntax: I want to match a path and exclude a certain relationship path.
I tried it with:
match p=(:WProcedure) - [*1..50] -> (:WTask)
where all(rel in relationships(p) WHERE type(rel) <> "CONSISTS_OF")...