I want to create item which have text column with special characters.
[attach my query]
mutation {
create_item (board_id:$board_id, group_id: $group_id, item_name: $item_name, column_values: "{\\",\\"___9\\":\\"<hello><World!>\\"}}") {
id
}
}
The query works fine, but it doesn’t print out the value I want on the screen.
It shows like this.(There’s no value in column.)
These symptoms do not occur only in <>. These symptoms also occur in other special characters.
How can i handling special characters?

