This error is occuring
This problem is coming on already implemented code of chat
I think it's server side problem
What's the code that triggers this?
final docs = await AuthService.databases.listDocuments( databaseId: ChatData.databaseId, collectionId: ChatData.collectionId, queries: [ Query.search( "receivers", currentUser.userId, ), ], ); I am listing Documents and this is giving me error
Does it happen randomly or all the time?
It start happening today
and happening regularly now
and we didn't even change anything
It's cloud, right?
Yes
@Evdog Do you have any ideas on what could be causing this?
Recommended threads
- Applying free credits on Github Student ...
So this post is kind of related to my old post where i was charged 15usd by mistake. This happens when you are trying to apply free credits you got from somewh...
- Attributes Confusion
```import 'package:appwrite/models.dart'; class OrdersModel { String id, email, name, phone, status, user_id, address; int discount, total, created_at; L...
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...