added
New `update_mute_board_settings` mutation
September 16th, 2025
🏷️ API version:
2025-10
You can now update a board's mute notification settings with the update_mute_board_settings
mutation.
mutation {
update_mute_board_settings(
board_id: "1234567890",
enabled: IM_ASSIGNED,
mute_state: CUSTOM_SETTINGS
) {
enabled
mute_state
board_id
}
}