I have a question with filters development. I have a lot of options (string objects) that user can assign to the object and these options are typical, so I can store them in Array or JSON. But there is a problem with filters: when user picks some options which he/she wants to have, my android app puts it into string array or Json (doesn't matter) and sends the request to find which objects have this list of options. In this case, is it possible to find a match between sent array and array of object with use of Query? If so, which way?
Please try to use a descriptive title so that:
- readers have a quick preview of what's wrong
- others can search if they're facing the same problem
It's a given you need help if you're posting in <#1072905050399191082>
Can I find by Query if string array on server contains another array?
I renamed the title😁
in short, queries on arrays are not supported yet. related issue: https://github.com/appwrite/appwrite/issues/2838
can you explain more about your "options"?
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...