A paginated query for channels associated with a specific tag. Create via Tag.createTaggedChannelsQuery.
const query = Tag.createTaggedChannelsQuery({ tagId: 'tag-1', pageSize: 20 });const page = await query.loadNextPage();
Whether the query is currently loading data
Whether there are more pages of data to load
Loads the next page of query results. Returns a busy error if a load operation is already in progress.
const result = await query.loadNextPage();if (result.isOk) { console.log('Data:', result.data);}
A promise resolving to the query result
A paginated query for channels associated with a specific tag. Create via Tag.createTaggedChannelsQuery.