I have a graph with nodes like "project", "employee" and "technology". There are relations between project and technology and between employee and technology.
I want to find employees that know all the technology used by a project. My cyper-query looks like this:
start project=node:project(name = "Project1")
match technology <-[:USED]- project , employee -[:KNOWS]-> technology
return employee
When running this query I get all employees that know one technology used by the project, and want employees that know all technologies used by the project. Is this possible in cypher?