Currently facing an error whereby some columns created don’t appear on the board and fail when their returned ids are used.
For example, in the image below, the mutation returns the ids of the created columns. One of such ids is the last_order9
id.
This column doesn’t appear on the board even after refreshing the page. Now, when I try to use the returned column id in another processing, it throws an error saying that, the column id does not exist
This is related to a bigger problem that is, some columns created do not appear on the board and those that appear often need a browser refresh to see them. I already mentioned this problem here.
Secondly, to the best of my knowledge, there is no way to create other column types apart from the status column from the documentation. In the create a column (Columns) part of the documentation, the example only shows how to create a status column. In the respective documentation for all the other columns, they all talk about how to update a column but never on how to create them. The example of the status column mentioned above isn’t applicable to the other columns because, as I later found out the hard way, the result received when one queries for the column type
is different from what is needed to create a column. Though some may be similar, others are absolutely different so the requests fail. An example of such is the people column. When one queries the type
for that column, it returns multiple-person
but to create such a column, you have to send the ColumnType
of people
. status
and color
is another example.
Could you please provide the various mapping between the ColumnType
and type
needed to create a column since they are not in the documentation? For example,
{
color: "status",
"multiple-person":"people"
}
Thank you.