Hello. I write my app in Java and need to delete specific value from documents. But I don't know how to list documents and find only documents with this value. In this collection, I have attribute List<String> with values. I need to find ONLY documents that List<String> contains my value. How to do that with Queries?
Aswerugad, I was just thinking about this same thing like 4 hours ago. Nothing of such in the Query docs.
Appwrite doesn't support queries on array attributes at the moment. You might want to 👍 this issue https://github.com/appwrite/appwrite/issues/2838.
A hack right now if you have an array of words is to make a search index and use the search query.
Recommended threads
- Weird permission failure
when creating an account I use following methods: ``` Future<void> register(String email, String password, String username) async { final user = await accoun...
- Flutter Android oAuth is no more working
I currently don't get the oAuth login to work in flutter android. it works on ios and on web. but when try to use it on Android, i get to the point where the ca...
- Relation Question
How do I create a relation from table y to an others x.$id. in my example I have a users table where I use Appwrites unique User IDs and I want other tables fo...