How can I query multiple relationships and pass filter for just one of them?
eg:
match (u:User)-[:PURCHASED|r:RATED {r.value > 3.5}]->(i:Item) return i
I wanna query all the items a user has interacted and only include those which the user rated ab...