Multiple assignees for one task

Hello !
I have a workflow in Make Integromat to create an item and assign it to multiple persons. I understood that I have to use the GraphQL Monday module, but my query is not good.

mutation {
change_multiple_column_values(
item_id:{{38.id}},
board_id:{{3.MONDAY_GROUP_ID}},
column_values: “{"people" : {"personsAndTeams": {{60.array}}}}”)
{ id
}

Where is my mistake ? (Sorry for my english… I am french)

Hi,

Can you please share screenshots of your flow? So I’d be able to better assist.

Kind regards

Hi there,
Here’s a corrected version of your mutation.please go through it.

mutation {
change_multiple_column_values(
board_id: {{3.MONDAY_GROUP_ID}},
item_id: {{38.id}},
column_values: “{"people" : {"personsAndTeams": {{60.array}}}}”
) {
id
}
}

If you encounter any further issues or have additional questions, feel free to ask!

For further implementation details you can connect us:
MSquare Support
Visit us here
Youtube Channel

Thx for your help and sorry for my late answer… I’ll try the solution just under and I tell you. Thx again.

Thank you very much. I’ll try this today and tell you.