I'm using latest Realm (0.90.0) and have two RealmObjects Event and Game in one-to-many relationship:
public class Event extends RealmObject
{
...
private RealmList<Game> games;
}
I wish to filter Events with one of the conditions that count of games must be bigger than 0. I am not sure how to include that filter in my query.
Thanks!