Realm query with List
I'm using realm to store my data on Android. Awesome framework! Now the only problem I'm now having is: I got a array list strings with id's of Countries in my database. Now I retrieve my Drinks that contains a relationship to countries. Is there a way that I could to do a query like this: String [] ids; realm.where(Drinks.class).equalsTo("country.id", ids); Something like that? Or do I really need to do a query to get me all drinks and then filter the list manually? EDIT: My classes: public class Drinks extends RealmObject { @PrimaryKey private String id; private String name; private Country