Mr.Possumz
05/30/2025, 4:14 PMdefinition user {}
definition team {
relation member: user
}
definition organization {
relation team: team
}
Or in the reverse?
definition user {
relation parent: team
}
definition team {
relation parent: organization
}
definition organization {}
Are there any perform differences impacted by the two strategies?
2. This is a bit of a loaded question but I'm curious how much overhead the addition of an individual caveat can introduce. Is one caveat trivial but the presence of multiple caveats while traversing a path could potentially be more problematic or is it not that clear cut?