I have a graph where each node represents a java class and each one has a property called namespace. I want to match a pattern where the starting node and final node share a namespace but all intermediates do not share that namespace. for the case where theres 3 classes (Class A -> Class B -> Class C) i have:
START inside1 = node(*)
match inside1 -[:USES]-> outside1 -[:USES] -> inside2
where inside1.namespace <> outside1.namespace
and inside2.namespace = inside1.namespace
return inside1.name, outside1.name, inside2.name
This seems to work fine. When I tried to expand it, I tried:
START inside1 = node(*)
match inside1 -[:USES]-> outside1 -[:USES*] -> inside2
where inside1.namespace <> outside1.namespace
and outside1.namespace <> inside1.namespace
and inside2.namespace = inside1.namespace
return inside1.name, outside1.name, inside2.name
The problem is I dont want any paths where intermediate nodes share the same namespace as inside1. so my question is, is there anyway that I can tell it "stop when you hit a node whos namespace is equal to inside1.namespace"?
Thanks.