query
abstract override fun <T : BaseRealmObject> query(clazz: KClass<T>, query: String, vararg args: Any?): RealmQuery<T>
Content copied to clipboard
Returns a RealmQuery matching the predicate represented by query.
A reified version of this method is also available as an extension function, realm.query<YourClass>(...)
. Import io.realm.query
to access it.
The resulting query is lazily evaluated and will not perform any calculations until RealmQuery.find is called or the Flow produced by RealmQuery.asFlow is collected.
The results yielded by the query reflect the state of the realm at invocation time, so the they do not change when the realm updates. You can access these results from any thread.
Parameters
query
the Realm Query Language predicate to append.
args
Realm values for the predicate.