Extra features such as sum and group are needed for Appwrite Query. Is there a plan for this or could these features come in future versions?
Or how can I solve these problems like creating a view in the database?
Hi,
You might want to see this https://github.com/appwrite/appwrite/discussions/3545 It is hard to say the exact time when we introduce new queries but you can leave your thoughts here.
For now you can use sum() from listDocuments, which is capped at 5000.
If you need exact count, you can write a function that runs every t minutes, and it paginates over all the documents. That will give you exact count.
Recommended threads
- Having issues with login via CLI
``` ~/appwrite appwrite login --endpoint https://localhost/v1 --verbose ? Enter your email myvalidemai...
- Send Email Verification With REST
I am using REST to create a user on the server side after receiving form data from the client. After the account is successfully created i wanted to send the v...
- Use different email hosts for different ...
Hello, I have 2 projects and i want to be able to set up email templates in the projects. Both projects will have different email host configurations. I see ...