I have a working Monday.com GraphQL mutation that I am attempting to replicate within the Monday GraphQL module.
The payload needs two dynamic parameters. One comes from a previous Monday.com module (this is working) the other I am getting from Set/Get Variable modules.
As seen in this image my get variable module is working
And here is the GraphQL module
When the scenario runs it appears an object is coming in from the Get CustomerID token though
Here is the full text of the query
mutation {change_multiple_column_values(item_id:9699522395,board_id:9403886554,column_values: "{\"board_relation_mks9ftw9\" : {\"item_ids\" : [\"{"CustomerID":"9696190845"}\"]}}") {id}}
As can be seen it’s bringing in the variable as an object and I need only the value of the variable.
Can someone please advise?


