Ok, so I have this in my serializer and model:
class Review< ApplicationRecord
has_one :gamesection
has_many :releases, through: :gamesection
has_one :cover, through: :gamesection
has_many :otherpics, through: :cover, through: :gamesection
But the problem is that it renders like
Review
->gamesection
->release
->cover
->otherpics
While I want it to be
Review
->gamesection
--->release
--->cover
--->otherpics
How can I accomplish that?