Per i report visualizzati “in loco”, è possibile creare un alias per l’id dalle tabelle topic (o post, ecc.) e utilizzare la magia del data explorer per trasformarlo in un link utilizzabile:
SELECT
id AS topic_id
FROM topics
È anche possibile costruire un URL e creare un alias come QUALCOSA_url per trasformarlo in un hyperlink. es:
SELECT
'https://meta.discourse.org/t/' || slug || '/' || id AS topic_url
FROM topics
Questo ti aiuta?