I all of a sudden started having issues with code that has been stable and working every day for over a year. So I tested a simple query through postman and the api playground. I now get
“errors”: [
{
“message”: “Cannot query field "items" on type "Board".”,
“locations”: [
{
“line”: 6,
“column”: 5
}
],
“extensions”: {
“code”: “GRAPHQL_VALIDATION_FAILED”
}
}
],
“account_id”: xxx
}
for a query as simple as:
{
boards(ids: 4017433669) {
id
name
items (limit: 10) {
id
name
column_values {
id
value
text
}
subitems {
id
name
column_values {
id
value
text
}
}
}
}
}
My real code returns a similar error
(Can’t get |data| of {account_id:xxx, errors:{{message:“Invalid GraphQL request”, |extensions|:{details:“failed to get the request body: error reading a body from connection: Invalid gzip header”, code:“INVALID_GRAPHQL_REQUEST”}}}}.-1728)
