RealmElementQuery

interface RealmElementQuery<T : BaseRealmObject> : Deleteable

Query returning RealmResults.

Functions

asFlow
Link copied to clipboard
abstract fun asFlow(): <ERROR CLASS><ResultsChange<T>>

Finds all objects that fulfill the query conditions and returns them asynchronously as a Flow.

find
Link copied to clipboard
abstract fun find(): RealmResults<T>

Finds all objects that fulfill the query conditions and returns them in a blocking fashion.

Inheritors

RealmQuery
Link copied to clipboard