You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to fetch a channel a user has not joined using cid , the following error is thrown
QueryChannels failed with error: "1 channels match your query but cannot be returned because you don't have access to them. Did you forget to include {members: $in: ["108ba247-88ee-43b8-987f-d306fde946d2"]}?
Is there a way to fetch a channel you have not currently joined? Here is my filter code.
late final channelListController = StreamChannelListController(
client: StreamChatCore.of(context).client,
filter: Filter.and(
[
Filter.equal('type', 'messaging'),
Filter.equal(
'cid',
'messaging:channel_cid',
),
],
),
);
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
When trying to fetch a channel a user has not joined using cid , the following error is thrown
QueryChannels failed with error: "1 channels match your query but cannot be returned because you don't have access to them. Did you forget to include {members: $in: ["108ba247-88ee-43b8-987f-d306fde946d2"]}?
Is there a way to fetch a channel you have not currently joined? Here is my filter code.
Beta Was this translation helpful? Give feedback.
All reactions