You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 23, 2021. It is now read-only.
For example, I'm looking for Message objects where the field conversationObject (Pointer<Conversation>) matches a particular object, i.e. Conservation conservation = new Conversation();
final Subscription sub = new BaseQuery.Builder("Message")
.where("conversationObject", conservation)
// .addField("field_to_be_returned")
.build()
.subscribe();
Why can't I filter by objects instead of just strings?