Thomas Opsomer
06/09/2022, 3:43 PMKevin Kho
06/09/2022, 5:07 PMquery {
task_run (where: {state: {_eq: "Running"},
task: {tags: {_contains: "tag"}}}) {
id
flow_run{
name
id
}
task{
name
tags
}
}
}
to find the responsible tasks that remain in a running state and marking them as Failed or Completed through the UIThomas Opsomer
06/10/2022, 8:20 AMKevin Kho
06/10/2022, 2:22 PMThomas Opsomer
06/10/2022, 2:26 PMKevin Kho
06/10/2022, 2:27 PMquery {
task_run (where: {state: {_eq: "Running"},
task: {tags: {_contains: "tag"}},
flow_run: {state: {_eq: "Failed"}}}) {
id
flow_run{
name
id
state
}
task{
name
tags
}
}
}
Thomas Opsomer
06/10/2022, 2:37 PM