query
abstract fun query(className: String, query: String = "TRUEPREDICATE", vararg args: Any?): RealmQuery<out DynamicRealmObject>
Content copied to clipboard
Returns a query for dynamic 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.