Hi,
How to create “Files” type column with the API? The Column Types Reference doesn’t list the “Files” type in it.
While we are able to read and edit into Files (type) column(s), it is still a handicap to not have the ability to create the Column.
I did try with the “column_type: files” and also with “column_type: file” in the create_columnmutation. The call failed with 500 Internal Server Error.
If there is a way to do this, kindly update documentation.
The query that I tried with is below:
mutation { create_column (board_id: <some_board_id>, title: “Upload Files”, column_type:file) { id title type } }