I have this piece of GQL that used to work since the introduction of 2023-10 however it stopped working a week ago. I noticed that the this way did not change on 2024-11.
{query:
boards(ids: xxxxx) {
name
items_page(
limit: 10
query_params: {rules: [{column_id: “mirror5”, compare_value: [0], operator: greater_than}], operator: and}
) {
cursor
items {…
the error I am getting is:
{
“error_message”: “This column type is not supported yet in the API”,
“error_code”: “InvalidColumnTypeException”,
“error_data”: {
“column_id”: null,
“actual_type”: “lookup”
},
“status_code”: 200,
“account_id”: xxxx
}
similar erro happens if I use 2024-10
{
“errors”: [
{
“message”: “This column type is not supported yet in the API”,
“locations”: [
{
“line”: 1,
“column”: 38
}
],
“path”: [
“query”,
0,
“items_page”
],
“extensions”: {
“code”: “InvalidColumnTypeException”,
“status_code”: 200,
“error_data”: {
“column_id”: null,
“actual_type”: “lookup”
}
}
}
],
“status_code”: 200,
“error_data”: {
“column_id”: null,
“actual_type”: “lookup”
},
“error_code”: “InvalidColumnTypeException”,
“error_message”: “This column type is not supported yet in the API”,
“account_id”: 6275190
}
any ideeas?