permission edit = writer /** * view indi...
# spicedb
f
permission edit = writer /** * view indicates that the user has permission to view the board, if they * are a
reader
or have
edit
permission. */ permission view = reader + edit I know I can check if a user has edit permissions but is there a way to combine this with a reader check? Basically check write access and if they don't have it, then conditionally check if they have read access? I could do two calls ofc but wanted to see if there was an easy way to do it one batched call