Greetings…hope ur well and hope not to add more work but im developing a flutter app trying to move away from firebase…
The console on cloud.io shows server error then the realtime worked abit but now it has totaly collapsed…is this cuz the free plan can handle requests or there is a bug…
Thank you
you're still having problems? What's your project ID?
this is it....65bc947456c1c0100060
this is my stream... Stream<Map<String, dynamic>> getMessagesStream() { AppWriteDataBase connect = AppWriteDataBase();
final realtime = connect.realtime;
final subscription = realtime.subscribe([
  'databases.65c375bf12fca26c65db.collections.65d0612a901236115ecc.documents'
]);
return subscription.stream.map((response) => response.payload);
}
the stream behaves weird when it works....it returns payload the sometimes it doesnt
could this be issues of the free plan?
Recommended threads
- Internal server Error when trying to exe...
When executing the function locally it works fine, but when the function is deployed I get this error: ```requests.exceptions.HTTPError: 500 Server Error: Inter...
 - Dynamic Roles
I tried to store a row with this permissions: permissions.push( Permission.read(Role.users("verified")), Permission.write(Role.label(`c-${calend...
 - Column size update error – "Invalid inde...
Hey everyone, I’m running into an issue when trying to update the size of an existing column in my Appwrite database. I’m trying to change the size from 30 to 5...