With postgres_ext-serializers installed polymorphic relationships are serialized as:
images: [{
id: 1,
imageable_id: 1,
imageable_type: 'User'
}]
Which ember data does not support: warp-drive-data/warp-drive#1574
Without postgres_ext-serializers installed polymorphic relationships are serialized as:
images: [{
id: 1,
imageable: {
id: 1,
type: 'User'
}
}]
Which ember data does support.