Hi I have stored list of users’ group `user1` info...
# spicedb
n
Hi I have stored list of users’ group
user1
information in an array like
["group1", "group2", ...]
and these groups are attached to applications in spiceDB like
group1 --> application1, group2 --> application2 , group100 --> application23
Now if I want to check if
user1
has access to
application23
, is there is better way to call the CheckPermission method for every group and get the access response than just looping through the loop making individual calls for every group? Or is there a way to do a bulk validation, just like we have bulk write relationship?
2 Views