Isso retornará todos os detalhes que você deseja saber
select * from information_schema.triggers
ou se você quiser classificar os resultados de uma tabela específica, tente
SELECT event_object_table
,trigger_name
,event_manipulation
,action_statement
,action_timing
FROM information_schema.triggers
WHERE event_object_table = 'tableName' -- Your table name comes here
ORDER BY event_object_table
,event_manipulation
o seguinte retornará o nome da tabela que possui o gatilho
select relname as table_with_trigger
from pg_class
where pg_class.oid in (
select tgrelid
from pg_trigger
)