An incorrect query to the Monday.com GraphQL API results in the following error:
{
"error_code": "ColumnValueException",
"status_code": 200,
"error_message": "This status label doesn\u0027t exist, possible statuses are: {0: Working on it, 1: Done, 2: Stuck, 3: Started}",
"error_data": {
"column_value": "{\"label\"\u003d\u003e\"Bottling\"}",
"column_id": "status"
}
}
This returns status code 200, and bypasses all error detection in the code for the success path, because it's looking for only the key "errors" - perhaps we can expand this via config? Any ideas on how to handle that?
Thanks for making such a great tool.
An incorrect query to the Monday.com GraphQL API results in the following error:
{ "error_code": "ColumnValueException", "status_code": 200, "error_message": "This status label doesn\u0027t exist, possible statuses are: {0: Working on it, 1: Done, 2: Stuck, 3: Started}", "error_data": { "column_value": "{\"label\"\u003d\u003e\"Bottling\"}", "column_id": "status" } }This returns status code 200, and bypasses all error detection in the code for the success path, because it's looking for only the key
"errors"- perhaps we can expand this via config? Any ideas on how to handle that?Thanks for making such a great tool.