
useEffect(() => {
const { client } = createClient();
const unsubscribe = client.subscribe(`databases.${process.env.EXPO_PUBLIC_APPWRITE_DATABASE}.tables.68a3fd390007b23f8ee7.rows.68b2f2e0001bdd8aeda6.update`,
(response) => {
console.log(response);
},
);
return () => {
unsubscribe();
};
}, []);
The above is my code, this is just a test. I have confirmed that all IDs are correct and the table has CRUD (any) permissions set. Then I updated the data in the AppWrite Cloud Dashboard, but I still didn't receive any response.
Seniors please help, I'm really at a loss as to what to do. I'm using the react-native-appwrite package and the environment is expo development build.
Recommended threads
- How to set content that only users with ...
How to set content that only users with verified email in Appwrite Console
- 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....
