I’m trying to understand basic item creation. I can create a new item successfully with a name but when I try to add additional column content I get errors.
monday.api(
`mutation {
create_item (
board_id: ${myBoardId},
group_id: "new_group",
item_name: "new item creation",
column_values: {
person: 20602378,
}
)
{
id
}
}`
)
It works if I remove the column-values object.