Regarding pagination support for queryChannels query in typescript SDK

Regarding pagination support for querychannel query for typescript SDK in react native application.

Hi @harshit here’s the sample code for queryChannels pagination part

const queryChannelLists = async () => {
const query = createQuery(queryChannels, {
membership: 'all',
isDeleted: false,
type: 'community',
page: { after: 0, limit: 10 },
})
runQuery(query, ({ data: channels, ...options }) =>
console.log(channels, options),
   )
  }