
I understand that doing notEqual like:
Query.notEqual('attr', [1, 2, 3])
Will become:
attr != 1 OR attr != 2 OR attr != 3
Therefore, we need to set up the condition line by line to turn it into AND
condition. Is there a limit to how many lines we can query in one go? I anticipate I will have a notEqual on 1000s records which makes it a very long line. Is there an efficient way to query long list of not Equal?
Recommended threads
- Document Data is null.
I'm using flutter and I've just got everything set up, the document meta data is null but the actual query is fine. (see screenshot) The permission I have ar...
- Do I need Redis if using appwrite
Saw appwrite has built-in redis, but does this work for listdocuments, getdocument and other query etc? what does the appwrite redis covers under the hood?
- Is there a way of fetching random docume...
In SQL, we have the `RAND()` function, is there an equivalent in Appwrite? In my app, the user answers questions, which all have an Elo rating. I'm actually un...
