
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
- exclude password field from getDocument
i got a getDocument that lists data from the user (username, password, id.....) so my question is how do i exclude the password so it doesnt get listed out? m...
- Date objects behaving weird
I've programmed an app that uses Date objects. Everything works perfectly in my local environment, but on my hosted version with Vercel, the times of the object...
- Unkown Attribute Error
I have a python server function setting up a database that follows the following flow: 1. create collection, 2. create attributes, 3. create document. I am get...
