What information indicates the parent node of a child node?
The Eclass tree has a logic in the numbers. The first two digits show level 1, the first four digits shows level 2, the first six digits shows level 3 and finally the full 8 digits shows level 4.
So the code should to something like this:
- iterate over all nodes that have XX000000. Lets say first match is 15000000, then iterate over 15XX0000 and find all child nodes, add relationship PARENT to all those with 15000000. After take first child node we found, iterate over all their child nodes and drill down the three.
Does a child node have its parent node’s ‘id’ as a property? // no
Try this. It is a fairly manual process that assumes four levels. I could probably generalize it to more levels you id had more characters with the same structure.
match(level1:Node) where level1.id ends with '000000'
with level1, substring(level1.id, 0, 2) as level1Prefix
match(level2:Node) where level2.id starts with level1Prefix and level2.id ends with '0000' and level2 <> level1
with level1, level2, substring(level2.id, 0, 4) as level2Prefix
match(level3:Node) where level3.id starts with level2Prefix and level3.id ends with '00' and level3 <> level2
with level1, level2, level3, substring(level3.id, 0, 6) as level3Prefix
match(level4:Node) where level4.id starts with level3Prefix and level4 <> level3
merge(level1)<-[:PARENT]-(level2)<-[:PARENT]-(level3)<-[:PARENT]-(level4)
return level1, level2, level3, level4