postgrest show users permissions per database code example
Example: list all permissions on a table in postgres
SELECT grantee, privilege_type
FROM information_schema.role_table_grants
WHERE table_name='mytable'
SELECT grantee, privilege_type
FROM information_schema.role_table_grants
WHERE table_name='mytable'