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
- SSR share session to client using custom...
Hi, so I was trying to get a hang of using SSR and using realtime updates in the same time which is done easiest if you have a custom domain in Appwrite and as ...
- Setup Permissions to only allow resource...
I would like to know how you do this in Appwrite Databases. Any ideas?
- [SOLVED] Get Relations when using Tables...
Hi there, I have a table containing a relation column with a one-to-many relationship to another table. When Using TablesDB.GetRow in "node-appwrite" i get all ...