Sample Header Ad - 728x90

cypher query to find Employee nodes who have all the Skills

0 votes
1 answer
710 views
I'm trying to write a cypher query to find the first name of 'Employee' nodes who 'Has' all the Skills (have relationship with all the nodes with the 'Skill' label). This is my data model: enter image description here I managed to get all the employee nodes that have at least one relationship with skill nodes, but I do not want this. This is the cypher query: :match (a:employee)-[r:Has_Skill]->(b:profession) return a,r,band I couldn't write it with the ALL() function. Can anybody help me with this?
Asked by user123215
Apr 13, 2018, 12:30 PM
Last activity: Apr 7, 2019, 06:02 PM