Hi - I have a `task` that went "rogue" during a ru...
# ask-community
i
Hi - I have a
task
that went "rogue" during a run, (prefect cloud). Is there a way to delete that specific run. It is contorting the Run History visualization
n
Hi @itay livni - you if you grab the flow run id from the URL, you can use it to run this mutation in the interactive API:
Copy code
mutation {
  delete_flow_run (input: {flow_run_id :"<<id>>"}){
    success
  }
}
💯 1