I'm doing a count of two node types, and unless I use distinct on each I seem to get some type of product of the two. could someone please explain how the count works?
MATCH (n:post), (t:topic)
RETURN
count(distinct n) as c,
count(distinct t) as c...