Could the “deprecatedField” warning at the end of the following api querry result be the reason for no values being returned for the first column? How can this be fixed?
Welcome to the community! Without the original query it is hard to tell what the reason is. In general: the leftmost column (called name) requires a different approach. If your goal is to retrieve all values on the board (all columns / all items) you should specify the name field along with the column_values field, like this:
{
boards(ids: [123456789]) {
items_page {
items {
name
column_values {
value
}
}
}
}
}
This one is using the 2023-10 version of the API. Therefore (see your original warning) you need to include the items_page field. If you have more that 100 items on your board you need to retrieve the cursor field and loop until you received all items. See: Items page