I am experiencing difficulty creating items with tag column values. The items create, but the tag values are not being set.
I saw from this previous question that tags need to be created and then passed as ID to the create_item call:
So my first mutation to create the tag is this:
mutation { create_or_get_tag (tag_name: "myNewTag", board_id: 785566686) { id } }
I then use that ID to create the item with the tag_ids like so:
mutation { create_item ( board_id: 785566686, group_id: "group_title", item_name: "item_name", column_values: "{\\"status\\":{\\"label\\":\\"Medium\\"},\\"tag\\":{\\"tag_ids\\":[7481612]}}" ) { id } }
When I perform that mutation from the API explorer, it is successful, but I am not seeing the tag on the new item in my board. Is there something wrong with the way I am trying set the tag values in the column_values? ( note, status does set correctly ).
cc / @Scott-monday.com