I\'m fairly new to EmberJS, and I\'ve been fiddling around for most of the evening trying to persist some hasMany and many to many relationships in a new app that I\'m worki
In my understanding, the reason that the active model serializer skips has many relations is that it expects the backend to handle it. In a relational database, the values of a has many are not explicitly saved on the parent record. It is sufficient to save the foreign key in the child. When you ask for a cleaner solution - perhaps ActiveModelSerializer
is not the best fit for your API.