Hey, I started playing around in the Authzed playg...
# spicedb
g
Hey, I started playing around in the Authzed playground to see if I'm able to achieve the access checking that I'm currently doing via MySQL queries and JOINs. Users in my application are part of a "job" and in each job there are (a dynamic amount of) "ranks." Let's say I have a document that should be accessible for a specific group: * Group ABC Rank 1: Viewer * Group ABC Rank 5: Commenter * Group ABC Rank 10: Editor I would like to have the access be inherited from lower to higher "ranks", so that Rank 2-4 can also view the document, Rank 6-9 can comment on the document and Rank 11+ can edit the document. Is such an inheritance possible?