Skip to content Skip to sidebar Skip to footer

Realm, Complex Linked Query

in the official docs, https://realm.io/docs/java/latest/#link-queries - there's an example how to select owners of 'Brown Fluffy' dogs. My questions is, how do I select only those

Solution 1:

Have you tried

.not().equalTo(...).findAll().where().not().equalTo(...).findAll();

?

Chaining link queries is a bit tricky, but if I understand correctly, that is what you should try.

Post a Comment for "Realm, Complex Linked Query"