https://prefect.io logo
Title
h

Hamza Naanani

01/05/2023, 8:30 AM
Hello, How can I delete a single run of a flow from the history in prefect 1.4 ? Thanks in advance
1
b

Bianca Hoch

01/05/2023, 5:52 PM
Hi Hamza, you can run the following query through the Interactive API to delete a single flow run:
mutation {delete_flow_run(input: {flow_run_id: "insert-flow-run-id-here"}) {
                                success,
                                error
                            }
                        }
🙌 1
h

Hamza Naanani

01/11/2023, 9:19 AM
Thank you, I'll try it