added

New `update_folder` mutation arguments

🏷️ API version: 2025-10

You can now update a folder's position, workspace, or product using the following new arguments on the update_folder mutation:

  • account_product_id
  • position
  • workspace_id
mutation {
  update_folder (
    folder_id: 1234567890,
    name: "Updated folder name",
    account_product_id: 54321,
    position: {
      object_id: "15",
      object_type: Board,
      is_after: false
    }
  ) {
    id
    name
  }
}