= realm.query<Dog>("age”, “1").first().find() // Observe Realm Notifications myDog.asFlow().map{ when(it){ is InitialResults -> TODO() is UpdatedResults -> TODO() } } // Update the puppy’s age to see the effect realm.write { myPuppy.age = 3 } @codeWithMohit