Hi, I’m using Unity SDK for Nakama
Is there any way to check if an IApiAccount already joined to a group without using ListUserGroupsAsync?
Use case is, whenever an app is relaunch, if user already joins a group they will automatically join group chat.
Right now the possible way is doing ListUserGroupsAsync and then joining group chat with the group id or by saving the group id locally, but rather than that we want to only GetAccountAsync -> get their group id, then automatically join group chat.
Is this possible?
Thanks!