Hi everyone. What's the general flow how to provide information about granted permissions to frontend to let frontend propery render UI based on granted permissions? Let's I have following inheritance: definition A -> definition B -> defitition C and I want to let frontend client know what permissions were evaluated for definition C. I tried to do it with read relationships API, but it returns relation for subject only if subject is explicitly defined on definition C, but if permissions were evaluated via parent relations like via definitions B or A. Also, another problem with read relationship API, it doesn't return list of all available permissions for subject. Another API is expand permission, but there is no filter for subject and permission is required. So ideally, I'd like to have an API where I can send object type with object id, subject type with subject id and get list of available permissions. Is it possible to do?