Jessica Smith
06/02/2022, 6:32 PM{
"errors": [
{
"path": [
"flow_run",
0,
"id"
],
"message": "Cannot return null for non-nullable field flow_run.id.",
"extensions": {
"code": "INTERNAL_SERVER_ERROR"
}
}
],
"data": null
}
I don't know how these values can be null if they...can't be null.query is:
{
flow_run(where: {_and: [{state: {_eq: "Scheduled"}}, {id: {_is_null: false}}]}) {
id
name
scheduled_start_time
state
parameters
flow {
id
name
}
}
}
Kevin Kho
{
flow_run(where: {state: {_eq: "Scheduled"}}) {
id
name
}
}
Jessica Smith
06/02/2022, 6:49 PMKevin Kho
{
flow_run(where: {state: {_eq: "Scheduled"}}) {
id
name
flow{
id
name
}
}
}
That does seem like a bug. Could you DM me the tenant id and name?Jessica Smith
06/02/2022, 7:00 PM