'databases.${ApiInfo.databaseidbase}.collections.${ApiInfo.collectionIdEvents}.documents.*.create'
]);``` thats how i subscribe but it doesnt work
databases.${ApiInfo.databaseidbase}.collections.${ApiInfo.collectionIdEvents}.documents
If you want to listen to any document creation in that collection
that works for updates too i dont want to listen to updates
you can only listen to channels
not specific events
oh rip
is there any workaround?
Recommended threads
- [SOLVED] Realtime Missing Channels
```js useEffect(() => { let subscription: RealtimeSubscription; async function loadChips() { try { const {rows: chi...
- Bug report: Race condition in Flutter SD...
Hi team, I've found an intermittent bug in the Flutter SDK (v20.3.0) when using `createOAuth2Session` on Android. **Symptoms** After `createOAuth2Session` re...
- Realtime queries - do they work on respo...
The current Realtime Queries docs are not very clear on the subject - when using queries to filter the subscription results, can we query on the `response.event...