Column_values 2023-10

Since the 2023-10 API update. Our API has no longer been returning the values of connected columns as text. The only way we can retrieve the information is by using value, which only returns the item ID in a list and not the text value.

Am I doing something wrong or is this part of the update?

query {
  items (ids: 12345) {
    column_values {
      value
      text
    }
  }
}

Hey!

You now have to do it like this:

query {
  items (ids: 12345) {
    column_values {
      value
      text
      ... on MirrorValue {
        display_value
      }
    }
  }
}

The value will be in the display_value property. It’s documented here: Mirror

– Simon

Thank you @xatxat !!

I’m still getting null on the board_relation

Ah, I thought you were talking about mirror columns. In that case, try:

query {
  items (ids: 12345) {
    column_values {
      value
      text
      ... on BoardRelationValue {
        display_value
      }
    }
  }
}

see Connect boards

THANK YOU!!!

2 Likes