I’m currently working on a feature where I need to search for channels based on either the Channel Name or Nickname containing a specific query. However, with my current approach, I’m only getting channels where both the Channel Name and Nickname contain the search query.
final listQuery = GroupChannelListQuery()
..channelNameContains = searchQuerys
..nicknameContains = searchQuerys
..queryType = GroupChannelListQueryType.or;