Last question for now 😅 Is it an anti-pattern t...
# spicedb
b
Last question for now 😅 Is it an anti-pattern to store a bi-directional relation as 2 tuples? E.g.
Copy code
definition user {
    relation org: org
}

definition org {
   relation member: user
}
Or
Copy code
definition folder {
   relation parent: folder
   relation child: folder
}
4 Views