What's the correct import statement like this: from appwrite.services.storage import Storage. Can't find info on this in the docs. Would appreciate any help
I seem to have figured it out. Should I have the query like this? It's throwing an index not found error for email:
res = databases.list_documents(databaseID, collectionFilesID, [query.equal("email", [email])])
If anyone is facing this issue, you need to first index the attribute.
[SOLVED] How can I use query in python
Recommended threads
- Inviting members while SMTP is disabled ...
Issue: https://github.com/appwrite/console/issues/3125 PR: https://github.com/appwrite/console/pull/3126
- Appwrite Sites: ERR_TOO_MANY_REDIRECTS o...
So, my domain was working perfectly fine with Vercel. I was using cloudflare CDN (still am) but CNAME was DNS-only. I switched over to appwrite, CNAME is still ...
- Invalid type for attribute 'email': emai...
I'm using the node-appwrite SDK to create a table, the column payload looks like this: ```json [{"key":"email","type":"email","required":true, "size": 512}] ``...