Hello,
One of the breaking changes for the API is: “Text field returns empty results for mirror, dependency, and connect boards columns when querying through column_values”
When I am running this query on the new API version 2023-10:
{
boards(ids: id) {
items_page(query_params:{ids: id}) {
items {
column_values(ids:"mirror") {
text
}
}
}
}
}
It seems that in the new version, the text values are still being returned, and they are not showing as null or empty results.
The question is whether this behavior will persist, or should we anticipate that in the near future, it will no longer return a value?
Thank you