How to get the actual values and not just Ids for columns of type dropdown?

Hi, how can the actual values be pulled with an API query rather then just the ids of dropdowns or other similar column types?

Thank you

Hi @Vlado,

You can retrieve the value of a dropdown column with a query like the following (see docs here):

query {
  items (ids:[1234567890, 9876543210]) {
    column_values {
      ... on DropdownValue {
        values {
          label
        }
      }
    }
  }
}

Let us know if you have any other questions!

Best,
Rachel

2 Likes