You can now use the set_item_description_content mutation to update an item’s description via the API. The description is provided as Markdown, which is then converted into document blocks that replace the item’s existing content.
You can now use the create_project mutation to create a new project board via the API. This mutation is part of a monday.com portfolio solution and only available on Enterprise plans.
Enterprise customers can now read and update Resource Directories using the new get_directory_resources and update_directory_resources_attributes APIs.
query {
get_directory_resources(team_ids:["12345", "54321"]) {
resources {
id
name
email
}
cursor
id
}
}
We’ve added two new mutations that let you create columns attached to managed columns via the API. Attached columns inherit and sync their configuration and data from the managed column that controls them.
Creates a new status column that's linked to a managed column
mutation {
attach_status_managed_column(
board_id: 1234567890
managed_column_id: "f01e5115-fe6c-3861-8daa-4a1bcce2c2ce"
title: "Project Status"
description: "This column is attached to a managed column."
) {
id
title
type
}
}
You can now specify a column’s width using the update_column mutation.
mutation {
update_column(
board_id: 1234567890
id: "status"
title: "Work Status"
description: "This is my updated work status column"
column_type: status
width: 200
revision: "a73d19e54f82c0b7d1e348f5ac92b6de"
) {
id
title
description
}
}