Using the below cypher i am try to return nodes where :
They must be connected by a particular relationship and the value of a property in relationship must be greater than 1.
match (n:Title)-[rel:REQUIRES_SKILL]->(x:Skill)
where rel.frequency > 1
return n, rel, x
This doesn't works, if between 2 nodes there are multiple relationships. It returns every relationship, even the one having frequency value equal to 1.