file_list = storage.list_files(bucket_id, queries=[Query.limit(60000)])
i got File "C:\Users\theer\Work\nextjs-dashboard\batch\venv\Lib\site-packages\requests\models.py", line 1021, in raise_for_status
raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 400 Client Error: Bad Request for url: https://cloud.appwrite.io/v1/storage/buckets/65ddda5a22511b49da95/files?queries%5B0%5D=limit%2850000%29
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\theer\Work\nextjs-dashboard\batch\48_timesheet_remapping_file_id.py", line 39, in <module>
file_list = storage.list_files(bucket_id, [Query.limit(50000)])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\theer\Work\nextjs-dashboard\batch\venv\Lib\site-packages\appwrite\services\storage.py", line 125, in list_files
return self.client.call('get', api_path, {
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\theer\Work\nextjs-dashboard\batch\venv\Lib\site-packages\appwrite\client.py", line 112, in call
raise AppwriteException(response.json()['message'], response.status_code, response.json().get('type'), response.json())
appwrite.exception.AppwriteException: Invalid queries param: Invalid query: Invalid query: Syntax error
When I removed Query.limit param it's fine.. It used to work.. but today unable to use it
Recommended threads
- fastly error
Hey! I'm hitting a Fastly error on the www version of our site, but the root domain works fine. We have a wildcard set up, so I expected the subdomain to be cov...
- Facebook's scraper facebookexternalhit g...
share.bardbliss.com but works fine on the raw fra.appwrite.run URL. No execution logs appear when Facebook hits the custom domain. This was working before. How ...
- How to Display File in Web?
I'm trying to use Appwrite's Storage to store images and display them in my app, however when I use the `getFileView`, `getFileDownload` or `getFilePreview` met...