ah, I see. the difference could be exemplified as...
# spicedb
f
ah, I see. the difference could be exemplified as
Copy code
definition group {
    relation member: user | group#member
}
vs
Copy code
definition group {
  relation member: user
  relation parent: group
the second makes a lot more sense to me even if you don't need access to a relation on the nested group. Are there any tangible benefits to the first?