Hello, How can I delete a single run of a flow fr...
# ask-community
h
Hello, How can I delete a single run of a flow from the history in prefect 1.4 ? Thanks in advance
1
b
Hi Hamza, you can run the following query through the Interactive API to delete a single flow run:
Copy code
mutation {delete_flow_run(input: {flow_run_id: "insert-flow-run-id-here"}) {
                                success,
                                error
                            }
                        }
🙌 1
h
Thank you, I'll try it