I have two NodeType: Parent and Child and a relation : HAS_CHILD
Each Child has a name.
Each parent has many children. I need to retrieve all children of a parent if this parent has a child matching a certain name.
So far I only succeed to retrieve the Parents and the children matching the name, but I need all the children of these parents.
MATCH (p:Parent)-[HAS_CHILD]->(c:Child) WHERE toLower(c.name) = 'Alex'
RETURN p, c