Skip to main content

I am using the GraphQL query to update the group name. It didn’t seem to be updating the name based on group ID.


referencing : Groups



Any suggestions on how can I achieve this ?


best,

Shamika

Hello there @Shamika_Khedkar,


Matias here!


If you want to change the group’s title, you can use a query like this one:


mutation {
update_group(
board_id: 12345678
group_id: "topics"
group_attribute: title
new_value: "New name here"
) {
id
}
}

When updating a group’s position using the relative_position_after or relative_position_before attributes, the new attribute value should be the unique identifier of the group you intend to place the updated group above or below. It will not change the group’s title.


Let me know if you have any other questions 🙂


Cheers,

Matias


Thanks @Matias.Monday , That worked !


Glad to help @Shamika_Khedkar !!


Reply