Skip to main content

Column_values 2023-10

  • October 18, 2023
  • 5 replies
  • 286 views

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
    }
  }
}

5 replies

xatxat
Forum|alt.badge.img+1
  • Participating Frequently
  • October 18, 2023

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


Matias.Monday
Forum|alt.badge.img
  • monday.com Team Member
  • October 18, 2023

Thank you @xatxat !!


  • Author
  • New Participant
  • October 18, 2023

I’m still getting null on the board_relation


xatxat
Forum|alt.badge.img+1
  • Participating Frequently
  • October 18, 2023

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


  • Author
  • New Participant
  • October 18, 2023

THANK YOU!!!