I want to update the value of a mirror column (type: ‘status’) with some random value (say, “abcd”)
I tried the below query but it returned an error:
mutation {
change_multiple_column_values(item_id:"item-id", board_id:"board-id", create_labels_if_missing: true ,column_values: "{\"mirror54\" : {\"label\" : \"abcd\"}}") {
id
}
ERROR:
{
"error_code": "ColumnValueException",
"status_code": 200,
"error_message": "This column type is not supported yet in the api",
"error_data": {
"column_type": "LookupColumn"
}
}
How can I update mirrored column value ?