Hello,
I’m trying to add columns values using monday’s official sdk ( GitHub - mondaycom/monday-sdk-js: Node.js and JavaScript SDK for developing over the monday.com platform ), but the docs are not helping to much.
I’m getting 500 error,
this is my code
monday.api(`mutation {
create_item (board_id: 123456789, item_name: "My Item Name", column_values: "[{\\"text1\\": \\"yellow\\"}, {\\"text2\\": \\"red\\"}, {\\"text3\\": \\"blue\\"}" ) {
id
} }`).then(res => {
console.log(res)
});
I tried also with only one column, still error 500 or nothing at all.
I don’t want to make another query and use “change_column_value”.
Thank you!