Anyone else having any issues clearing a file column?
I’m using the correct syntax but keep getting a 500 error, bot via my app and the monday playground. If I use an incorrect item_id or board_id I correctly get a 404. The 500 seems to only happen when the request is correct.
Example:
mutation($board_id: Int!, $item_id: Int!, $column_id: String!, $value: JSON!) {
change_column_value(board_id: $board_id, item_id: $item_id, column_id: $column_id, value: $value) {
id
}
}
vars:
{
"board_id":10XXXXXX,
"item_id":10XXXXXX,
"column_id":"my_file_column",
"value":"{\"clear_all\": true}"
}
Any ideas?
FYI - I’m trying to clear a file column on a sub item.