Column_values

Im using column_values to get all columns from a specific pulseId and I’m not getting the first column “Contacts”. All other columns are retrieved. What am I doing wrong?

{
  items(ids: 4218053704) {
    column_values {
      column {
        id
        title
      }
      id
      type
      value
    }
  }
}

the first column is the item name.

{
  items(ids: 4218053704) {
    name //<-- the item name
    column_values {
      column {
        id
        title
      }
      id
      type
      value
    }
  }
}

This is annoying because when you query the board for columns it does return “name” as a column that exists. You also change the name by mutating the “name” column. But you can’t retrieve the value by getting the name column, only the item name. I have submitted a feature request for them to fix this as it seems… obtuse and requires a special case just to handle the name separately.

2 Likes

@anon29275264 Thank you for this.

Thank you, @anon29275264 !!!