I'm implementing group chat feature using Layer SDK. From the iOS SDK how can I fetch the LYRConversation instance using the conversation ID considering that I am not a part of that conversation.
LYRQuery class specifies that it runs the queries only on the conversations that I am a part of and hence are stored in my local database.
I'm fetching a list of layer conversation IDs from my backend API (as trending groups feature). There does not seem to be any API provided by Layer's iOS SDK to join another conversation based on it's conversation ID.
Is there a solution to this?