how i cant fetch channels with name and members nickname at the same time?
I want to clarify to ensure I properly understand your inquiry. Are you how you can fetch channels based on both User ID and User Nickname in the same query?
Thanks,
Tyler
example:
channel1:
name: channel_1,
member:
nickname: albert_2
channel2:
name: channel_2
member:
nickname: mark
when i type in my input: “_2”
y want to list
- channel_1
- channel_2
hannel_1 has a member with nickname contain “_2”
hannel_2 has a name contain “_2”
So you want to be able to find both channel names AND channels with member nicknames that match _2
?
i was using: /v3/group_channels/ but don’t have the required filters for that I want
but i resolve perfectly with: /v3/users/{user_id}/my_group_channels
thanks any way.