Help me please. I'm trying to find all matches of the field OWNER with array elements.
But the result is an error:
val persons = arrayOf("Anna", "Jon", "Mary")
val accounts = realm.query(AccountStorageItem::class, "owner IN $persons").find()
I try different things but nothing works
This is how everything works fine, but I really need to pass an array:
val accounts = realm.query(AccountStorageItem::class, "owner IN {"Anna", "Jon", "Mary"}").find()