Hi ,
I have attempted various methods to insert a variable as the value for a column, the “text39” column as shown in the Mutation query below, but I have been unsuccessful so far. Any help on this one
mutation ($myText: String!) {
create_item (
board_id: 415144386,
group_id: “emailed_items12303”,
item_name: “Subject”,
column_values: “{"dropdown99": "7",
"dropdown": "",
"dropdown9": "18",
"text39": " $myText ",
"status4": "0",
"text26": "staff response to",
"additional_info": "This is the addional info",
"text27": "Rec_no"
}”
) {
id
}
}
i have tried "text39": $myText . Didn’t work
tried "text39": ${myText}. Didn’t work .
Doing all this from postman and variable is defined
{
“myText”: “Test text”
}
