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
- Current User is Not authorized
recreating same Thread
- Apple OAuth Scopes
Hi Hi, I've configured sign in with apple and this is the response i'm getting from apple once i've signed in. I cant find anywhere I set scopes. I remember se...
- Sign In With Apple OAuth Help
Hi All! I've got a flutter & appwrite app which Im trying to use sign in with apple for. I already have sign in with google working and the function is the sam...