I am trying to clear the subitem file column with ‘change_column_value’ mutation. For the item its working good but for subitem its throwing an error ‘item not found on board’.
Same error is throwing with upload file to column also, working with item id but not working with subitem.
Here is my mutation:
mutation($boardId: ID!, $itemId: ID!, $columnId: String!, $value: JSON!) {
change_column_value(
board_id: $boardId,
item_id: $itemId,
column_id: $columnId,
value: $value
) {
id
}
}