cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Limiting recursion by a condition

Hi,

I have an organisation chart modelled as a hierarchy in Neo, and I'm trying to find an efficient way of answering, "who reports to a given individual?"

Here are the rules:

  • All Departments apart from the root are PART_OF exactly one parent Department
  • People WORK_IN Departments; some people WORK_IN a Department as head

Here's an example:

Screenshot from 2022-07-27 21-23-26.png

 People report to the next-highest head of a Department:

  • Erin straightforwardly reports to Alice
  • Bob also reports to Alice, because 'Widgets', the parent of Bob's Department, doesn't have a head, so he skips that one and reports to the head of parent of the 'Widgets' Department.

Here's the Cypher to create the above structure.

CREATE (ceo:Department {name: 'CEO'})
CREATE (w:Department {name: 'Widgets'})-[:PART_OF]->(ceo)
CREATE (sw:Department {name: 'Software Widgets'})-[:PART_OF]->(w)
CREATE (hw:Department {name: 'Hardware Widgets'})-[:PART_OF]->(w)
CREATE (rprs:Department {name: 'Rocket-Powered Roller Skates'})-[:PART_OF]->(hw)
CREATE (jpps:Department {name: 'Jet-Powered Pogo Sticks'})-[:PART_OF]->(hw)
CREATE (s:Department {name: 'Sales'})-[:PART_OF]->(ceo)
CREATE (:Person {name: 'Alice'})-[:WORKS_IN {head: true}]->(ceo)
CREATE (:Person {name: 'Bob'})-[:WORKS_IN {head: true}]->(sw)
CREATE (:Person {name: 'Charlie'})-[:WORKS_IN {head: true}]->(hw)
CREATE (:Person {name: 'Dave'})-[:WORKS_IN]->(hw)
CREATE (:Person {name: 'Erin'})-[:WORKS_IN]->(s)

I found it's possible given a Department to identify all descendent Departments up to the first with a head using the following Cypher:

MATCH (root:Department {name: 'CEO'})<-[:PART_OF*]-(d)
WHERE NOT EXISTS {
	(root)-[:PART_OF*]-(intermediate)-[:PART_OF*]-(d), (intermediate)-[:WORKS_IN {head: true}]-()
}
RETURN root, d

This is more or less saying "find all the descendant Departments of root except those that can only be reached by passing through another Department that has a head."

I was pretty pleased with this, until I tried it on a large data set.  It turns out that starting out from a root with a few hundred descendants, it's fairly slow, and when you get into the thousands, it's unusable.

It appears there are two things that are bad about my query: the MATCH generates all paths to all reachable dependants, and then the WHERE NOT EXISTS clause has work to do on each path that grows (to the square?) with the length of path in question.

I suspect there's a better way of writing this query - the MATCH really doesn't need to generate all those paths, because it can stop descending the hierarchy whenever it encounters a Department with a head, however, I don't know how to express that in Cypher.  Perhaps there's a different way of approaching it entirely I haven't considered?

Can anyone help me with how to go about this?

1 ACCEPTED SOLUTION

Here is a modified code:

match (a:Person)
CALL apoc.path.spanningTree(a, {labelFilter:'Person|Department', relationshipFilter:'WORKS_IN|PART_OF'}) yieldpath
with nodes(path) as n1, relationships(path) as r1
unwind n1 as n2
unwind r1 as r2

with n2 where labels(n2) = ['Person']
match (p:Person)-[]-(d:Department)
where id(p) = id(n2)
optional match (d)-[]-(f:Department)-[]-(g:Department)
where d.name <> "CEO" and g.name = "CEO"
return distinct p.name as Person, d.name as ParentDept, coalesce(f.name, "CEO") as GrandParentDept, coalesce(g.name,'NA') as FinalDet
Result:
Screen Shot 2022-07-28 at 12.19.13 AM.png

View solution in original post

3 REPLIES 3

Cypher does not allow you to traverse the nodes and stop when a condition is reached.  It allows you to match patterns.  This results in producing a lot of redundant data when matching against a tree structure and the need to filter out results to target your results. 
You will be better served using the APOC path finding procedures. 


https://neo4j.com/labs/apoc/4.1/overview/apoc.path/

let’s know if you want assistance after reading the docs. 

ameyasoft
Graph Maven

Try this:

match (a:Person)
CALL apoc.path.spanningTree(a, {labelFilter:'Person|Department', relationshipFilter:'WORKS_IN|PART_OF'}) yield path
with nodes(path) as n1, relationships(path) as r1
unwind n1 as n2
unwind r1 as r2

with n2 where labels(n2) = ['Person']
match (p:Person)-[]-(d:Department)
where id(p) = id(n2)
optional match (d)-[]-(f:Department)-[]-(g:Department)
where d.name <> "CEO" and g.name = "CEO"
return distinct p.name as Person, d.name as ParentDept, coalesce(f.name, d.name) as GrandParentDept, coalesce(g.name, 'NA') as FinalDet
Result:

Screen Shot 2022-07-28 at 12.12.22 AM.png

Here is a modified code:

match (a:Person)
CALL apoc.path.spanningTree(a, {labelFilter:'Person|Department', relationshipFilter:'WORKS_IN|PART_OF'}) yieldpath
with nodes(path) as n1, relationships(path) as r1
unwind n1 as n2
unwind r1 as r2

with n2 where labels(n2) = ['Person']
match (p:Person)-[]-(d:Department)
where id(p) = id(n2)
optional match (d)-[]-(f:Department)-[]-(g:Department)
where d.name <> "CEO" and g.name = "CEO"
return distinct p.name as Person, d.name as ParentDept, coalesce(f.name, "CEO") as GrandParentDept, coalesce(g.name,'NA') as FinalDet
Result:
Screen Shot 2022-07-28 at 12.19.13 AM.png