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
- Skip total counts crash the query
Hello, When adding the total parameter (either true, the default, or false) to the listRows function, it raises the following error: `type 'bool' is not a sub...
- Current User Is Not Authorized To Perfor...
I keep getting an error saying the current user is not authorized to perform the requested action, when I'm trying to create a row a table. Permissions have bee...
- Relationships and Realtime
Since now Relationship attributes are only returned when explicitly queried, how does this change reflect in Realtime? If a listener is listening to a row from ...