Hi,
I am trying to mutate multiple column values from a subitem with this query:
mutation {
change_multiple_column_values(
item_id: subitemId
board_id: boardId
create_labels_if_missing:true
column_values: “{"text": "New text", "status": "Done"}”
) {
id
}
}
i get:
{
“error_code”: “ResourceNotFoundException”,
“status_code”: 404,
“error_message”: “Item not found in board”,
“error_data”: {
“resource_type”: “item”,
“item_id”: 5719698167,
“pulse_id”: 5719698167,
“board_id”: 5702744956,
“error_reason”: null
}
}
I’m not sure if this is the correct way to change the column values, or if I should provide the column values when creating the subitem (I also don’t know how this would be done).
How can I make this?