I woudl like to build an oriented Graph using propel. The behavior I am looking for is similar to the nested set but with multiple parents for one child.
What exists:
P: Parent Node
C: Child Node
(0,1)P <- (0,n)C
What I need:
(0,n)P <- (0,n)C
I have read this: http://propelorm.org/behaviors/nested-set.html and that: https://github.com/CraftyShadow/EqualNestBehavior
Could you give me some direction please?