Connor Vaid
10/04/2022, 11:10 AM{
"errors": [
{
"path": [
"flow_run",
0,
"id"
],
"message": "Cannot return null for non-nullable field flow_run.id.",
"extensions": {
"code": "INTERNAL_SERVER_ERROR"
}
}
],
"data": null
}
When I add the following “where” filter it seems to work (this would suggest I have some flows with null ids?), however when running a query to find flows with null ids nothing is returned.
{
"where": {
"flow": {
"id": {
"_is_null": false
}
}
}
}
Please let me know if you have any ideas about why this may happen, thanks!Christopher Boyd
10/04/2022, 2:23 PMJoshua Greenhalgh
10/04/2022, 2:29 PMConnor Vaid
10/04/2022, 2:35 PMChristopher Boyd
10/04/2022, 2:57 PMJoshua Greenhalgh
10/05/2022, 9:12 AMquery Flow_run($where: flow_run_bool_exp, $limit: Int, $offset: Int) {
flow_run(where: $where, limit: $limit, offset: $offset) {
id
name
parameters
scheduled_start_time
start_time
end_time
state
flow {
name
}
}
}