GraphQL Changing Multiple Column Values

Hi Everyone!

In Make.com I am using Graph QL to insert the linked pulse id to another board and also would like to change a status column. The linked pulse works great, or anytime I try this with 1 column, but anytime I try adding more than one column change in the mutation, it instantly gives me a 200 error. Any help would be appreciated!

mutation {
change_multiple_column_values(item_id:123456789, board_id:11223344, column_values: “{"connect_boards" : {"item_ids" : [4670722142]}, {"status5":"PUSHED"}”) {
id
}
}

Hello there @conjuredmedia,

I believe you have a syntax issue there.

Would you be able to please try this syntax:

mutation {
  change_multiple_column_values(
    item_id: 1234567890
    board_id: 1122334455
    column_values: "{\"connect_boards\" : {\"item_ids\" : [1111155555]},\"status\":\"Done\"}"
  ) {
    id
  }
}

Let me know how that goes!

Cheers,
Matias