Hi there,
I’m trying to create task and define status of the task, but it is not easy to understand how to properly do this.
My query:
mutation {create_item (board_id: 377902169, group_id: "new_group18793", item_name: "new item", column_values: "{"status": "Search Active"}") {id}}
This query failed with error:
[{"message":"Parse error on \\": \\" (STRING) at [1, 117]","locations":[{"line":1,"column":117}]}]
I’ve also tried this query:
mutation {create_item (board_id: 377902169, group_id: "new_group18793", item_name: "new item", column_values: {status: "Search Active"}) {id}}
And this query fails with 500 status code and message “We’re currently experiencing some technical issues which our developers are working hard to resolve” (but the status page shows there are no incidents…)
So, the question is how I can set the correct value for columns for a new task?
Thank you!