
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
- Queries about live WebSocket connections
Hey everyone! 👋 I'm exploring Appwrite for a live online test where thousands of candidates will be active simultaneously. I couldn't find any official docume...
- Resend SMTP issues?
I'm getting this console log error, but I have everything set up so that anyone can access it. Can anyone help me figure out what I did wrong? Shoot, I'll even ...
- transaction like functionality
As I understand it appwrite doesn't support transactions. I'm attempting to make a document in three separate collections at the same time when a user register...
