How to find all dashboards using particular query? (via API or another way) #6678
-
Hi everyone! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Can you do that by calling
|
Beta Was this translation helpful? Give feedback.
-
https://github.com/getredash/redash-toolbelt/tree/master/redash_toolbelt You can use this doc. |
Beta Was this translation helpful? Give feedback.
-
And you can connect redash pg to run sql: select
q.id
, q.name
from public.dashboards d
left join public.widgets w on w.dashboard_id = d.id
left join public.visualizations v on v.id = w.visualization_id
left join public.queries q on q.id = v.query_id
where d.id = 1 -- change you dashboard id |
Beta Was this translation helpful? Give feedback.
And you can connect redash pg to run sql: