I Have a node called Member it has Relationships to Clubs and Shops I want to create a query so that I can return Member with Clubs and Shops
MATCH (m: Member { username: $memberUsername ,
password: $password})<- [r: MEMBER_BELONGS_TO_CLUBS] - (c: Club)
RETURN m, c, r
in the example I get Member and Clubs but I want to get member Clubs and member Shops