hi
i want to change an item`s status if it contains a variable that i am getting from external source. is it possible?
how to write the query with the variable?
this is my query which works but i need it as i mentioned above.
code:
x = ‘mutation {change_simple_column_value (board_id: 2827196132, item_id: {id_num}, column_id: “status3”, value: “Paid”) {id}}’
y = x.format(id_num = item_id_from_coda)# i tried using .format which does not works.
data = {‘query’:y}
thanks
roy