EmbeddedObjects seem like a good fit for my current use case as I have a schema something like:
Parent: Object
– [Child: EmbeddedObject]
---- [SubChild: EmbeddedObject]
If I .observe the parent object for changes using a NotificationToken I don’t ever pick up anything that happens when children or sub-children are modified. Any changes that occur directly to properties on the top-level parent object do result in a notification for changes however. Is this expected?
Thanks!