Hello, everyone!
I want to know how many relationships does a query return when there are two MATCH patterns, and I couldn't figure out how to do it.
For example:
MATCH (a)-[r1]->(b), (c)-[r2]->(d)
WHERE a.name <> d.name AND b.region = c.region AND a...