Hi all,
I have a board with the following columns:
The dev assignee and Reporter columns are of type “multiple-person” and with id of “person”.
I am having a person’s id, which I’m trying to insert in the followingway:
mutation {
create_item(
board_id: 3782143770,
item_name: "New ItemZzzZ",
column_values: "{\\"multiple-person\\":{\\"person\\":\{\\"id\\":\\"36904156\\"}]}}") {
id
name
}
}
I get a new item being created with correct title, but the assigned person is the first person in the alphabetic order, no matter what person id i put inside.
So, yeah, I’m quite struggling with inserting a person into the multiple-person column, and I couldn’t find anything in the web which was actually working for my case.
Any ideas?
Regards! :_)