PoptOriginal post
Rank 2: Process
`
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.
Summary
Realtime feature not working in React Native Expo. Developer is using react-native-appwrite package. The code seems correct and IDs are verified. Realtime updates not showing when data is updated in AppWrite Cloud Dashboard.