I’ve tried something like this:
mutation {
create_item (board_id: 123,
group_id: "my_group",
item_name: "Test Item",
column_values: "{
\"text_4\" : \"Line 1
Line 2\"
}"
) {
id
}
}
Or:
mutation {
create_item (board_id: 530995076,
group_id: "new_group11081",
item_name: "Melanie",
column_values: "{
\"text_4\" : \"Line 1\nLine 2\"
}"
) {
id
}
}
Both of these result in HTTP 500 error in my program, on the “try it yourself” site, it results in “TypeError: NetworkError when attempting to fetch resource.”.
Am I not allowed to insert line breaks into text column values?