If I have an array of primitive values, how can I run a .not().contains() on a .where() from RealmResults ?
The code would hopefully look like this:
results.where().not().contains("id", new int[] {1, 2, 3})
Or do I have to iterate over all of these results and pluck them out individually?