Joshua Greenhalgh
07/25/2022, 11:51 AMquery Task_run($where: task_run_bool_exp) {
task_run(where: $where) {
id
flow_run_id
state
task {
name
}
}
}
With variables;
{
"where": {
"start_time": {
"_gte": "2022-07-20",
"_lt": "2022-07-21"
}
}
Always times out;
{
"errors": [
{
"path": [
"task_run"
],
"message": "Operation timed out",
"extensions": {
"code": "API_ERROR"
}
}
],
"data": null
}
Mason Menges
07/25/2022, 10:11 PMJoshua Greenhalgh
07/29/2022, 6:20 PM