
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
- 1.7.2 Node-appwrite createDocuments from...
Am I correct in my testing that functions with document creation event, wont trigger on calling createDocuments from within a function.
- Access to encrypted string attributes fr...
Can I use the getRow functionality if that row contains encrypted string attributes? Or is this completely impossible to get the value on the client side? From ...
- Opt-in relationships
Load relationships of relationships not work When I try to get translation.word_from.* it failed. But as you can see translation it is relation and word_from a...
