Similar to Bug fix: Sending an empty array to clear a dropdown column from @rachelatmonday, I thought I’d try to manipuate some file columns.
Using the following mutation:
mutation (
$board_id: ID!
$item_id: ID!
$column_values: JSON!
) {
change_multiple_column_values(
board_id: $board_id
item_id: $item_id
column_values: $column_values
){
id
}
}
With the following variables:
{
"board_id": 1540573903,
"item_id": 1540573945,
"column_values": "{\\"files__1\\":"],\\"files_1__1\\":"]}"
}
This returns a success & empties the files columns in the UI, but if you reload the page, the files return.
🙋♀️ Whats happening?
Here’s a Loom demo: