added

New `mentions_list` argument in `create_update` mutation

🏷️ API version: 2025-07

You can now mention users, teams, boards, and projects when creating updates using the new mentions_list argument in the create_update mutation.

👉 Read more here!

mutation {
  create_update (item_id: 9876543210, body: "This update will mention user 1234567890 on an item", mentions_list: [{id: 1234567890, type: User}]) {
    id
  }
}