Query for column_value title no longer works?

Hello,
I am working on updating to the 2023-10 API version and using the items_page_by_column_values query. It looks like the column_values title field is not working with it now?

query {
items_page_by_column_values (limit: 50, board_id: xxxxxxxxxx, columns: [{column_id: “status2”, column_values: [“Approved”]}]) {
cursor
items {
id
name
column_values{
text
title
id
value
}
}
}
}

I get the following error

{
“errors”: [
{
“message”: “Field ‘title’ doesn’t exist on type ‘ColumnValue’”,
“locations”: [
{
“line”: 17,
“column”: 9
}
],
“path”: [
“query”,
“items_page_by_column_values”,
“items”,
“column_values”,
“title”
],
“extensions”: {
“code”: “undefinedField”,
“typeName”: “ColumnValue”,
“fieldName”: “title”
}
}
],
“account_id”: xxxxxxx
}

you can access the title by adding column{title} within the column_values part.

column_values {
  column {
    title
    settings_str
  }
}

I can give you a guess at a technical reason for that change.