Hi
I’m trying to send a mutation to create a new item on the board and populate all columns. Everything seems to work except for the “person” column. No errors in the response.
request
mutation {
create_item (board_id: 505100819, group_id: "topics", item_name: "test_name", column_values:"{\\"person\\":{\\"id\\":12307363},\\"status\\":{\\"label\\":\\"Done\\"},\\"date4\\":{\\"date\\":\\"2019-06-03\\"}}") {
id
}
}
response
{
"data": {
"create_item": {
"id": "505328688"
}
},
"account_id": 5530601
}
I’m kind of lost why is this not working