UNPKG

stream-chat-react-native-core

Version:

The official React Native and Expo components for Stream Chat, a service for building chat applications

11 lines (7 loc) 292 B
import { selectChannels } from './queries/selectChannels'; import { SqliteClient } from '../SqliteClient'; export const getAllChannelIds = async () => { const channels = await selectChannels(); SqliteClient.logger?.('info', 'getAllChannelIds'); return channels.map((c) => c.cid); };