Hi, is there a way to delete a specific flow-run? ...
# ask-community
j
Hi, is there a way to delete a specific flow-run? or the logs associated with a specific flow-run? (for the case where logs may have non-redacted private data in, for example)
a
You can use this mutation:
Copy code
mutation {
  delete_flow_run(input: {flow_run_id: "13d40e4d-18b8-49d6-8269-62af6894003c"}) {
    success
  }
}
🐶 1