Is it possible to update group max_count after it has been created?

Hello, is it possible to update the ‘max_count’ of a group after it has been created? Or even change the default from 100 to a higher number? I am trying to run the code below, but it says there is nothing to update. I guess the only other option would be to create the group on the server using another RPC.

local nk = require("nakama")


local function update_group_max_count(context, payload)

local json = nk.json_decode(payload)

local group_id = json.GroupId
local max_count = json.MaxCount


nk.group_update(group_id, "", "", "", "", "", nil, "", max_count)

end

nk.register_rpc(update_group_max_count, "update_group_max_count")

Cheers, Andreas.

@Mawiel There’s no way to adjust that limit right now. Can you describe why you’d want to raise the limit to be higher and what sort of use case you have for larger groups?

hi
i really need to increase the max size of group max member.
when i am creating group i can set max member to 1000
but when i want to update it i cant to upper than 100

Could you describe what are you trying to do? Currently there is no way to update group limit.

i want to my members could create groups with 500 members
in your documentation u says can changed the limit
but i cant do it in code