Match (c:Case),(a:Event),(b:Event{activity:'B'})
where not exists((c)<-[:EVENT_TO_CASE]-(a)<-[:DF*..]-(b)) and a.activity='A'
return distinct c.name
I have this query
I want to get which case name doesn't have a relation between A and B
The query r...