Skip to main content

Status column items_by_column_values query Fails on query by status_index

  • January 17, 2020
  • 2 replies
  • 1954 views

status column items_by_column_values query
only works when value is a label and not an index

value = status_label = "done"  # query works
value = status_index = 1 # query fails

This query WORKS.

query {
  items_by_column_values (board_id: 12345678, column_id: "status",
  column_value: "done") {
    id
    name
    column_values {
      id
      title
      value
    }
  }
}

These queries FAIL: (identical query, except the below column value)

column_value: 1
column_value: "1"
column_value: {"index": 1}
column_value: {"index": "1"}
column_value: '"{\\\\"index\\\\": 1}"'
column_value: '"{\\\\"index\\\\": \\\\"1\\\\"}"'

Is this a feature or a bug?

This topic has been closed for replies.

2 replies

  • Participating Frequently
  • April 13, 2020

Just running into this too.

Seems to be varying occasions for returning index or label.

When querying items_by_column_value - it requires label
When querying items - it only returns index
When mutating items, you can use index OR label

It would be nice to be able to view label, orbe able to get an array of indexes and labels for a column


  • February 25, 2021

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.