Hello ,
I’m trying to create a row in a group with specific column value , so itried the following mutation query :
mutation {
create_item (board_id: 30282029, group_id: "new_groupe3628", item_name: "new item" , column_values: "{\\"text1\\" : \\"hello\\"}") {
id
}
}
Wich work perfectly on the monday graphql developer tool
But when I put it in my code and use it I always get the same error :
Error:
Parse error on " : " (STRING) at t3, 116]:
{"response":{"errors":"{"message":"Parse error on \\" : \\" (STRING) at t3, 116]","locations":"{"line":3,"column":116}]}],"account_id":2436059,"status":200},"request":{"query":"\\n mutation {\\n create_item (board_id: 716535551, group_id: \\"nouveau_groupe36728\\", item_name: \\"new item\\" , column_values: \\"{\\"text1\\" : \\"hello\\"}\\") {\\n id\\n }\\n }\\n "}}
Can Someone Help Me ?
Thanks