added
New mutations to update dropdown and status columns
September 30th, 2025
🏷️ API version:
2025-10
We've added two new mutations to update status and dropdown columns. These mutations are strongly typed to better validate complex settings.
mutation {
update_status_column(
board_id: 1234567890,
id: "project_status",
title: "Updated Project Status",
revision: "09606bfd3334eb88084f310fb4aef0cb",
settings: {
labels: [
{ color: peach, label: "On Hold", index: 1, is_deactivated: true},
{ color: river, label: "Done", index: 2},
{ color: grass_green, label: "Working On It", index: 3}
]
},
description: "The project's updated status."
) {
description
id
}
}
mutation {
update_dropdown_column(
board_id: 1234567890,
id: "project_category",
title: "Updated Project Category",
revision: "09606bfd3334eb88084f310fb4aef0cb",
description: "The project's updated category."
) {
description
id
title
}
}