Hi, I am trying to create a new item and set the columns values from the beginning to avoid changing the values in a separate API call.
mutation {
create_item(
item_name: "Name",
board_id: ID,
group_id: "GROUP",
column_values: "{\\"date\\": \\"2019-01-20\\" }" )
{
id
}
}
This gives me this error:
"error_code": "ColumnValueException",
"status_code": 400,
"error_message": "change_column_value invalid value",
"error_data": {
"column_value": "2019-01-20",
"column_type": "DateColumn"
Any suggestions?