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.