Netflix / fast_jsonapi

No Longer Maintained - A lightning fast JSON:API serializer for Ruby Objects.
Apache License 2.0
5.07k stars 425 forks source link

passing in list of params for collection? #456

Open jji-fieldwire opened 4 years ago

jji-fieldwire commented 4 years ago

Is it possible to do something like this?

items = [item1, item2, item3]
param1, param2, param3 = 'a', 'b', 'c'

MySerializer.new(items, { params: { myparam: [param1, param2, param3] } })