RealmElementQuery

interface RealmElementQuery<T : RealmObject> : Deleteable

Query returning RealmResults.

Functions

asFlow
Link copied to clipboard
abstract fun asFlow(): Flow<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