0
votes

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.

enter image description here

1
Could you provide a sample of the results you get when you use "Rows"?ScottMcC
Added an picture of result, what do you mean by "Rows" ?Nirmal Vatsyayan
Referring to the table or text views, I believe.InverseFalcon

1 Answers

3
votes

Try turning Connect result nodes off. Else there are all possible relationships displayed between the resulting nodes.

enter image description here