Dropdown - Reading the dropdown existing labels

I run into a situation where I need to get possible labels in the dropdown column through API.
Is there an option to get that values?

Hello there @mpsujek,

Yes! You can get the possible labels in a dropdown column with a query like this one:

{
  boards(ids: 1234567890) {
    columns(ids: "dropdown_9") {
      settings_str
    }
  }
}

I hope that helps!

Cheers,
Matias

1 Like

Thank You :slight_smile: that’s help

1 Like

Hi!

I am glad it does :slightly_smiling_face:

Let us know if you have any other questions!

Cheers,
Matias