I am trying to retrieve related data from multiple related nodes with the following cypher:
Match (n {email:{paramEmail}})-[*..3]-(m) Return n,m",
{ paramEmail: email})
The problem is if there are no existing relationship as yet then I get zero rows returned...user not found though the user(n) exist but at this point have no relationships. I still need the properties from the user(n) node so I have to make a separate call. Is there a query that would return n even though there was no relationship with m?