I want to fetch the count of a specific relations between two specific node types i.e.
MATCH (n:Person)-[r:Wrote]->(a:Movie)
RETURN count(r)
however this query does not use count store.
I have to figure out such count for all the relationships in my ...