Closed
Description
Example
has_many :charts, root: :rows, serializer: ChartSerializer
This produce a json with charts collection and ignore the custom name as follow
{ charts: [ ... ] }
When I'm expecting
{ rows: [ ... ] }
also fails using key option
has_many :charts, key: :rows, serializer: ChartSerializer