Running this query in cypher
MATCH (v:Person)<--(a:Place)<--(s:Thing) WHERE count(s)>0 RETURN v
Getting this Error Message:
Can't use aggregate functions in the WHERE clause.
Obviously it doesn't like filtering on the count aggregate function. What is a good work around for this? Thanks!