Is there anyway to increase the limit of fetching of documents in python. Couldnt find any medium from the internet. Please help.
Have you tried query.limit(5000)?
Doesnt work. i am trying to get the datas in python btw. couldnt find any documentations listed with python using queries
from appwrite.query import Query
databases.list_documents('[DATABASE_ID]','[COLLECTION_ID]',[
Query.limit(5000),
])
Are you doing something like this?
Oh man thanks a lot. I got it fixed now. i had issues while importing appwrite.query and i tried to uninstall and reinstall the module and now it is fixed
Cool beans!
[solved] cannot use queries in python when listing documents
[SOLVED] cannot use queries in python when listing documents
Recommended threads
- Introducing new string column types made...
Adding new string types is hugely bennificial! Unfortunately it made the current column types not editable to change their types to the new longer field types.
- there is critical problem in this part
when user update the integer and double both get error not update or upload
- Python function - error while creating /...
I have been trying to figure it out myself for the last 2 days. I have self-hosted appwrite instance, and I am running python 3.12 function. It works great up t...