I remember reading the documention and it stating a max array length for Query.equals(key, array)
but now I cant find it.
I was trying to query 100 items in the array but was getting an error related to array lengths.
Is there an upper limit to the length of the array?
yes, 100 as the error indicates
well....it's 100 queries...where each query has a max string of 4096 chars (because the query gets converted to a string like:
equal("attribute",["val1","val2"])
Recommended threads
- listRows result parsing issue
I'm using Appwrite Dart SDK "24.2.0". When I perform a listRows call in dart, I have this reponse in JSON: in " Future<models.RowList> listRows()" { "total" :...
- Index for combination of columns
How am i suppposed to apply index so that combination of two columns alwasy remain unique in appwrite table though console
- Broken Flutter SDK >=24.1.0
Row.fromMap now does: ``` data: Map<String, dynamic>.from(map["data"] ?? {}) ``` But Appwrite Cloud TablesDB row responses return custom row columns flattene...