I was trying to list rows in a table that do not already exist in another table. I retrieved around 260 row IDs which are 13 characters in length each, and then used Query.notEqual('$id', rowIds) to query the target table. However, I received this error:
AppwriteException: Invalid `queries` param: Value must a valid array no longer than 100 items and Value must be a valid string and at least 1 chars and no longer than 4096 chars
code: 400,
type: "general_argument_invalid",
response: "{\"message\":\"Invalid `queries` param: Value must a valid array no longer than 100 items and Value must be a valid string and at least 1 chars and no longer than 4096 chars\",\"code\":400,\"type\":\"general_argument_invalid\",\"version\":\"1.8.0\"}",
In my opinion, a character limit of 4096 is way too limiting for any non-trivial queries like this one. I would like to see the database being able to at least handle 500-1000 IDs before throwing the same error.
Recommended threads
- is `account.get()` safe to be used in th...
I want to user's `id` for authentication. However, a while ago I was told in this server not to use `account.get()` and instead add user preferences for that us...
- Appwrite console is too heavy
The Appwrite console is too heavy And all of my services broken Any support , please
- Usage of the new Client() and dealing wi...
Hey guys, just a quick one - we had some web traffic the other day and it ended up bombing out - To put in perspective of how the app works, we have a Nuxt Ap...