You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi team, we moved our app to ember-data v1.13.8 (We are using rest adapter) everything is working as expected but polymorphic belongs-to relation model is not serialized. I followed this https://github.com/emberjs/data/blob/master/TRANSITION.md#polymorphic-relationships. But when i changed data from
{
"message": 12,
"messageType": "post"
}
to
{
"message": {id: 12, type: 'post'}
}
it will work. This may be an issue or is there any work around for this?
The text was updated successfully, but these errors were encountered:
Hi team, we moved our app to ember-data v1.13.8 (We are using rest adapter) everything is working as expected but polymorphic belongs-to relation model is not serialized. I followed this https://github.com/emberjs/data/blob/master/TRANSITION.md#polymorphic-relationships. But when i changed data from
{
"message": 12,
"messageType": "post"
}
to
{
"message": {id: 12, type: 'post'}
}
it will work. This may be an issue or is there any work around for this?
The text was updated successfully, but these errors were encountered: