Skip to main content
Solved

Value field returns null on connect boards

  • February 19, 2026
  • 2 replies
  • 21 views

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!

Best answer by g.agoncillo

Hi there, I think what you’ll need now is the “linked_item_ids” field. I’m currently using version 2026-04 by the way. Feel free to check if its also available for 2025-01 version

Sample query below:
 

query GetPaymentProfileBoardMainTable($boardId: ID!) {
boards(ids: [$boardId]) {
items_page {
items {
name
column_values {
id
text
value
... on BoardRelationValue {
linked_item_ids
linked_items {
name
updated_at
}
}
}
}
}
}
}

Add a fragment “BoardRelationValue”. Below is a sample structure of what it will return in graphql response.
 

value and text field will be null by default if the column type is board relation. Utilise the linked_item_ids or the linked_items field.

2 replies

  • New Participant
  • Answer
  • February 19, 2026

Hi there, I think what you’ll need now is the “linked_item_ids” field. I’m currently using version 2026-04 by the way. Feel free to check if its also available for 2025-01 version

Sample query below:
 

query GetPaymentProfileBoardMainTable($boardId: ID!) {
boards(ids: [$boardId]) {
items_page {
items {
name
column_values {
id
text
value
... on BoardRelationValue {
linked_item_ids
linked_items {
name
updated_at
}
}
}
}
}
}
}

Add a fragment “BoardRelationValue”. Below is a sample structure of what it will return in graphql response.
 

value and text field will be null by default if the column type is board relation. Utilise the linked_item_ids or the linked_items field.


  • Author
  • New Participant
  • February 19, 2026

Thanks a ton, that resolved my issue!