I have a simple board with items that include a few subitems. Using the GQL API I’m seeing some odd behavior in my query results:
The column_values data in each of my returned subitems always reflects the first subitem’s column_values, even though these subitems contain different column dropdown, text, and link field values. The subitem ids and names are correct and unique.
query example:
items(ids: [2916462227, 2916500373]) {
    id
    name
    column_values {
      id
      value
      text
    }
  }
I’ve also tried querying the parent:
items(ids: [2916537441) {
  id
  subitems {
    id
    name
    column_values {
      id
      value
      text
    }
  }
}

