Hi all,
I’m trying to update multiple dropdowns in the same item as once. Which each drop down containing multiple values.
I got this to work for one of them: {
“query”: “mutation {change_simple_column_value (item_id: 123456789, board_id: 123456789, column_id:"dropdown__1", value: "Frankie, Cupcake", create_labels_if_missing: true) {id}}”
}
{
“query”: “mutation {change_multiple_column_values (item_id: 123456789, board_id: 123456789, column_values: "{\"dropdown__1\": {\"value\": \"IFM - Non-Productized FM, LA - Lease Administration - Financial Management, OPM - Space & Occupancy Planning, PDS - WD Outsourcing, TM - Transaction Management - Transaction Management Essentials\"}, \"dropdown5__1\": { \"value\": \"Integrated Facilities Management, Lease Administration, Occupancy Planning & Management, Project and Development Services, Transaction Management\"}}", create_labels_if_missing: true) {id}}”
}
What am I missing? The call works and I get a status of 200, but the item doesn’t actually look to be touched.
TIA