Hi
I am doing some work in the dev playground and am getting a circular error. If I try this query:
{
boards(ids: 4036050693) {
groups (ids:"Q3 2023 Engineering Squads") {
title
id
items {
id
name
}
}
}
}
I get an error response indicating it is a deprecated field. (Which we were told was going to happen)
"extensions": {
"warnings": [
{
"message": "Replaced by Group.items_page in 2023-10",
"locations": [
{
"line": 6,
"column": 7
}
],
However, when I change the query to this:
{
boards(ids: 4036050693) {
groups (ids:"Q3 2023 Engineering Squads") {
title
id
items_page {
id
name
}
}
}
}
I get an error message that reads the items_page is not available for this version of the API.
{
"errors": [
{
"message": "Field 'items_page' doesn't exist on type 'Group'",
"locations": [
{
"line": 6,
"column": 7
}
Per the docs here, items_page should be available as a field under Groups
monday API docs
Did your dev team put out the deprecated field check before you switched the API over to the right version or am I doing something wrong?