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
- createRow types
Hello, I'm trying to use the tablesDB class with .createRow. I've generated types; but when I apply the type, it still comes back as Promise<any>. Ideas? ht...
- DATA LOSS when using DB Operators in tra...
I'm using Appwrite Cloud with TablesDB. Calling updateRow with DB operators work as expected: ```ts await databases.updateRow({ databaseId: 'db-id', tableId...
- Bug in relational table
I potential found a bug or is there something I am missing? I created 2 tables. User and Coins User has a one to one relation to Coins When attempting to cre...