
I have a document listing request from Flutter that usually works if the date interval I'm using for querying is bigger than 2 days. But if it's just 2 days or a single day interval, Appwrite returns me a Generic Error. I'm attempting to log it to the container but I don't know which container is responsible for it...
Here's the query params: final List<String> equipmentQuery = [ Query.equal("id", orderListIDs), Query.greaterThanEqual( "creation_date", dateToBeginTimestamp(initDate), ), Query.lessThanEqual( "creation_date", dateToBeginTimestamp(finalDate), ), ];
Thank you
Recommended threads
- 503 Timeout when Updating or Upserting D...
Hey I’m running into an issue when trying to update or upsert a row in Appwrite. The request hangs for a while and then throws this error: ``` AppwriteException...
- Hola equipo de soporte,
Hola equipo de soporte, Estoy desarrollando una Function en Appwrite Cloud con Node.js 22 y el siguiente package.json: { "name": "upload-whitelist", "type"...
- Sites 30MB limit from GitHub
I’m deploying a site from github as Other type on the Hobby plan. It is actually a Flutter web app but it’s in a subdirectory with the root being an html landin...
