Skip to content

How to find all dashboards using particular query? (via API or another way) #6678

Closed Answered by gaecoli
vladislav-finogeev asked this question in Q&A
Discussion options

You must be logged in to vote

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

Replies: 3 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by guidopetri
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants