I’m utilising Postman to create a new item with populated columns, however I’ve hit a problem where the item is created, but the fields remain blank.
This is my syntax
mutation {
create_item (
board_id: 283592949,
group_id: “For Consideration”,
item_name: “New Suggestion”,
column_values:"
{
\\“Priority\\” : {\\“label\\” : \\“Low\\”},
\\“Your_Name\\”:\\“Hello world\\”,
\\“Department\\” :\\“Hello world\\”
}"
) {
id
}
}
If I try
mutation {
create_item (
board_id: 283592949,
group_id: “For Consideration”,
item_name: “New Suggestion”,
column_values:"
{
\\“text\\”:\\“Hello world\\”,
\\“text\\” :\\“Hello world2\\”
}"
) {
id
}
}
Then the left most text field is populated with “Hello world2”
GraphQL is new to me, so I’m sure I’m missing something obvious, but after going through the examples on here and the documentation I’m no closer to getting this to work.
Any help you can offer is greatly appreciated.