Using Amplify Gen2 subscriptions I am able to obtain all data of a specific model but any new items created via AppSync through console triggers a subscription event in my app but no object data is sent along with the trigger. This applied to both client.models.(model).onCreate and client.models.(model).observeQuery().subscribe.
Data returned in console is:
New item:
Object { }
<prototype>: Object { … }
The "Object { items: (11) […], isSynced: true }" in attached image is a successful fetch on application initialization.
I am using Angular. Am I doing something wrong?