hi everybody, just wondering if its possible to se...
# ask-community
j
hi everybody, just wondering if its possible to search `task_run_id, flow_id`from the prefect UI?
v
you can use the Graph QL interface to query the flow names and ids. https://docs.prefect.io/orchestration/ui/interactive-api.html
🙌 1
k
Copy code
query {
  flow {
    name
    id
    tasks {
      id
      name
    }
  }
}
GraphQL query
🙌 1