Hi,
I’m trying to use the API v2 to change the values in a dropdown column. The first instruction works. The other two are not. But should work according to the instructions at https://monday.com/developers/v2#column-values-section-dropdown
The following three actions should all always lead to the same result. That’s not the case. Only the first one results as expected.
My primary interest is an update using the labels instead of the ids.
Can someone help please?
Thnx a lot
Michael
Instruction: mutation { change_column_value(board_id: 123, item_id: 456, column_id: “status2”, value: “{"ids":[1]}”) { id } }
Expected: value: "{"ids": [1]}
Result: value: "{"ids": [1]}
Instruction: mutation { change_column_value(board_id: 123, item_id: 456, column_id: “status2”, value: “{"id":1}”) { id } }
Expected: value: "{"ids": [1]}
Result: value: "{"ids": null}
Instruction: mutation { change_column_value(board_id: 123, item_id: 456, column_id: “status2”, value: “{"label":"xyz"}”) { id } }
Expected: value: "{"ids": [1]}
Result: value: "{"ids": null}
