query
abstract override fun query(className: String, query: String, vararg args: Any?): RealmQuery<DynamicMutableRealmObject>
Content copied to clipboard
Returns a query for dynamic mutable realm objects of the specified class.
Return
a RealmQuery, which can be used to query for specific objects of provided type.
See also
Parameters
className
the name of the class of which to query for.
query
the Realm Query Language predicate use when querying.
args
realm values for the predicate.
Throws
if the class with className
doesn't exist in the realm.