Hello,
Is there a way to move files between columns?
When I am using this mutation in order to move a file from one column to another:
mutation {
change_column_value(
board_id: boardId
item_id: itemId
column_id: "files"
value: File
) {
id
}
}
Once I remove the file from the original column, where it was uploaded initially, the file is no longer available.
Thanks