David George
09/14/2022, 2:14 PMDarin Douglass
09/14/2022, 2:21 PMquery {
task_run (where: {state: {_eq: "Running"},
task: {tags: {_contains: "<tag name>"}}}) {
id
flow_run{
name
id
}
task{
name
tags
}
}
}
David George
09/14/2022, 2:55 PMDarin Douglass
09/14/2022, 2:57 PMSet State
to Cancelled (or whatever)
<https://cloud.prefect.io/><your-tenant>/task-run/<id from snippet above>
David George
09/14/2022, 2:59 PMMason Menges
09/14/2022, 3:34 PMDavid George
09/14/2022, 4:10 PMmutation {
setTaskRunState(input: {taskRunId: "9b724cde-0870-41a5-9f7b-f681e8c5d676", version: 2, state: "Cancelled"}) {
id
}
}
I was trying this but I was getting errors