HI, I am using the API version 2024-01 and since recently the value field returns null on connect boards.
As an example
{
boards(ids: my-id) {
items_page(limit: 1) {
items {
column_values (ids: "boards_verbinden__1") {
id
type
value
text
}
}
}
}
}returns
{
"data": {
"boards": [
{
"items_page": {
"items": [
{
"column_values": [
{
"id": "boards_verbinden__1",
"type": "board_relation",
"value": null,
"text": null
}
]
}
]
}
}
]
},
"extensions": {
"request_id": "aea63278-8d4a-9aa6-a460-25fc93191820"
}
}
I also tried with API version 2025-01 and get the same result. What is the reason for this?
Any support on this is highly appreciated!
