You can now retrieve an item's description using the new description field on items queries. This field returns the item's ID and content blocks where the description is stored. Check out the example below:
query {
items(ids: [1234567890]) {
name
description {
id
blocks {
id
content
}
}
}
}
ColumnValueException errors return the column_type property to indicate the type of column that caused the error. Previously, this property returned the column type with the word "Column" appended:
For example: "ColorColumn", "StatusColumn", "DateColumn"
After this update, the column_type property now returns just the column type without "Column" appended. You can find the full list of supported column types here.
For example: "color", "status", "date"
Here’s an example of an updated error response:
{
"message": "invalid value - label does not exist in column. Please check our API documentation for the correct data structure for this column. https://developer.monday.com/api-reference/docs/change-column-values",
"locations": [
{
"line": 1,
"column": 10
}
],
"path": [
"change_column_value"
],
"extensions": {
"code": "ColumnValueException",
"status_code": 200,
"error_data": {
"column_type": "color",
}
}
}
You can now create a workspace within a specific product by using the new account_product_id argument in the create_workspace mutation.
mutation {
create_workspace (name:"New Workspace", kind: open, description: "This is a new workspace in the CRM product.", account_product_id: 505616) {
id
description
}
}
You can now create empty boards using the new empty argument on the create_board mutation. When used, this creates a new board without any items in the default group.
You can now query apps built with the monday.com apps framework using the new app object. This query retrieves metadata about your apps and their features.
You can query it directly at the root or nest it within a platform_api query to retrieve API consumption data for the account's top six apps.
query {
platform_api {
daily_analytics {
by_app {
app {
name
features {
type
name
}
id
api_app_id
state
}
usage
}
}
}
}
You can now query your account's daily API consumption using the new platform_api object. This object includes fields that provide insights into your account's daily API call limit, usage, and top contributors.
query {
platform_api {
daily_analytics {
by_day {
day
usage
}
by_app {
app {
name
}
api_app_id
usage
}
by_user {
user {
name
}
usage
}
last_updated
}
}
}
You can now update a user's custom role using the role_id argument on the update_users_role mutation. You can obtain available role_id values by querying the new account_roles type.
Custom roles are only available on Enterprise plans.
You can now query an account's roles through the new account_roles object. This query returns metadata about an account's user roles (both default and custom).
We delivered this feature because we got multiple requests for it from our developer community. If you have a feature request, submit it to us through the developer's category.