
Any example of using queries in the context of REST API?
Here's an example: https://appwrite.server/v1/databases/DB_ID/collections/COL_ID/documents?queries=["equal(customerId, CUSTOMER_ID)"]
Whatever format I tried, I keep getting response:
{
"message": "Invalid queries: Value must a valid array and Value must be a valid string and no longer than 4096 chars",
"code": 400,
"type": "general_argument_invalid",
"version": "1.2.1"
}

Did you look at this? https://appwrite.io/docs/rest#query

Thanks

[SOLVED] Using queries in REST API
Recommended threads
- 404 Not Found when viewing document (con...
When viewing a document in console 6.1.23 i have an issue where the page displays a 404. Going back to 6.0.13 made it work again. When looking at the requests ...
- Change attribute without losing data
Hey so I have a collection that has a "due" attribute now I have over 2K+ documents and noticed that I made it an integer instead of a float and we need it to b...
- Incremental/Updates based on OG value wh...
I've set up my own SDK accessed as below ```lua DB["userinfo"]["bankaccounts"]:update({ method = "equal", attribute = "userid", values =...
