I’m trying to use create_column to create a column of the ‘formula’ type, but the schema on the GraphiQL tool doesn’t appear to list this as a valid value for the column_type variable, which as far as I can see should be a ColumnType. Can anyone let me know if this is possible?
Querying for a board created through the normal user interface does seem to show ‘formula’ as the type. Is ‘formula’ maybe some special case of one of the listed types?
{
"data": {
"boards": [
{
"columns": [
{
"id": "name",
"type": "name"
},
...
{
"id": "formula3",
"type": "formula"
}
]
}
]
}
}
Many thanks in advance!