Hello fellas,
I’m using Realm for Flutter/Dart and I’m trying to find out if or how it is possible to write a Realm query that uses the ANY collection operator but checks for multiple conditions.
A pseudo query could look like this:
ANY (items.priority == 1 AND items.isComplete == true)
Can someone confirm if there is a way to filter embedded collections like this?
And if so please give me some hint on how the query must look like.