Changing the value of a subitem column with type "time_tracking"

Hey there!
When I try to update the value of a subitem column using the playground I get the following:

mutation UpdateTimeColumnValue {
  change_column_value(
    board_id: [board_id]
    item_id: [item_id]
    column_id: "time_tracking"
    value: "{\"duration\": 0}"
  ) {
    id
  }
}
{
  "errors": [
    {
      "message": "Invalid column type value",
      "locations": [
        {
          "line": 1,
          "column": 45
        }
      ],
      "path": [
        "change_column_value"
      ],
      "extensions": {
        "code": "ColumnValueException",
        "status_code": 200,
        "error_data": {
          "board_id": [board_id],
          "column_id": "time_tracking",
          "column_type": "duration",
          "column_value": {
            "duration": 0,
            "changed_at": "2024-12-17T21:39:16.659Z"
          }
        }
      }
    }
  ],
  "status_code": 200,
  "error_data": {
    "board_id": [board_id],
    "column_id": "time_tracking",
    "column_type": "duration",
    "column_value": {
      "duration": 0,
      "changed_at": "2024-12-17T21:39:16.659Z"
    }
  },
  "error_code": "ColumnValueException",
  "error_message": "Invalid column type value",
  "account_id": [account_id]
}

Seems like a bug, but I could be missing something.

@van-sprundel

The time tracking column can not currently be updated. From the monday API Reference documentation:


Jim - The Monday Man
Get Custom Apps, Integrations & Automations for monday

Ah, that makes sense.
Bummer though, I was hoping to make a time tracker app for myself