I am trying to write that mutation query but not able to make it work.
the query should select the row based on the environment name and update the columns “remark” and “branch” with the values I will provide in the query.
I found we can update the column value using below query:
mutation {
change_multiple_column_values(
item_id: xxxxxxxx
board_id: 1122334455
column_values: "{\\"status\\" : {\\"label\\" : \\"Done\\"}, \\"dropdown\\": \\"My label\\" }"
) {
id
}
}
but in above query I don’t know the item_id. How can I have a query which will find the item_id by matching the column ‘environment’ with ‘test’