You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
Two events A and B can be made to be part_of one another, ie event A can indirectly (possibly even directly) be its own ancestor. This can cause recursion-depth errors, when trying to traverse relationships.
However, in the ACMILabs fork, we've also made part_of a many-to-many, since an event can be part_of many parent events. So the event structure should be a directed acyclic tree, rather than an mptt-type tree where every Event only has one parent.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Two events A and B can be made to be
part_of
one another, ie event A can indirectly (possibly even directly) be its own ancestor. This can cause recursion-depth errors, when trying to traverse relationships.However, in the ACMILabs fork, we've also made
part_of
a many-to-many, since an event can bepart_of
many parent events. So the event structure should be a directed acyclic tree, rather than an mptt-type tree where every Event only has one parent.The text was updated successfully, but these errors were encountered: