Back
Realtime listener does not get update when cloud function updates rows
- 0
- Functions
- Realtime
- Cloud

listener (flutter)
TypeScript
realtime
.subscribe(['databases.6882943XXXXX.tables.public.rows.main'])
.stream
.listen((message) {
print(message);
});```
cloud function that updates the doc. (Works fine)
``` await appwriteService.update(
databaseId: '6882943XXXXX',
collectionId: 'public',
documentId: 'main',
data: {
'totalEntries': length,
},
);```
**If I manually update row on cloud console, listener gives message. If my cloud function updates the row, the listener does not recieve anything.**
TL;DR
Developers are experiencing an issue where the realtime listener does not receive updates when a cloud function updates rows, but it works fine when the row is manually updated from the cloud console.
Solution: Ensure the cloud function triggers the necessary events for the realtime listener to receive updates correctly. This may involve adjusting the way the cloud function updates the rows to trigger the listener appropriately.Recommended threads
- rror creating Appwrite user: User (role:...
I do not understand, I have tryied everything tryable to make this error go away, I have absolutely no more ideas on how should I correct this. Anything can hel...
- Is it possible to initialize an Appwrite...
If I provide a project repository to someone, and within that repo there is an `appwrite.json`, is it possible to initialize the project in Appwrite from scratc...
- Finally installed AppWrite through Cooli...
Finally installed AppWrite through Coolify, can log in and use Functions normally, but Realtime reports an error AppWrite container logs: 2025-09-05T14:54:26....
