what is the best way to use to queries for statistical report. multiple condition and multiple rows
Hi! here's an example to use queries https://appwrite.io/docs/databases#querying-documents
The best way could be to keep functions separate and clearly defined so there are no overlaps and/or duplicates. Also try looking into indexing https://dev.to/appwrite/how-do-i-index-my-appwrite-collection-2o4n
Recommended threads
- Substring lookup for array elements
Hello, Is substring look up possible for array of strings? ```js Query.contains('product_names', [chair]), ``` this only works if I have the exact item name. `...
- Hey everyone! I'm trying to self-host th...
Hey everyone! I'm trying to self-host the latest Appwrite version (1.8.1) on Coolify. Which docker-compose.yml file should I use from their repo? Can someone he...
- Weird Query Error
In next js I am getting this error in the image ```js queries: [ Query.equal('title', TitleId), Query.limit(10) ] ``` am I doing something...