How to query for all index values in a status column?

I’m trying to get all if the index values associated with a status column.
query{
items (ids:){
column_values
{}}}
doesn’t work for this due to needing an item id, which limits the scope too much.
query {
boards (ids: ) {
columns (ids:) {}}}
Won’t work either, because you can’t query for column values here.

Anyone know how to get this information?

{
  boards(ids: [123456789]) {
    columns(ids: ["status"]) {
      settings_str
    }
  }
}

gives you all index values for a given status column, including the “Done” colors, the indexes, colors and positions

1 Like

This worked perfectly, thank you! How did you know to do that?