Skip to main content

mutation_query = f"“”

mutation {{

change_multiple_column_values(

board_id: “{board_id}”,

column_values: ‘{{“{column_id}”:“{column_value}”, “ids”: {json.dumps(item_ids)}}}’

) {{

id

}}

}}

“”"

Hello there @Sagar,


There is no way to do that using one mutation.


You can either iterate through the items and send one request per item, or go with the approach explained here to send multiple mutations in one request.


Cheers,

Matias


Reply