So I have
render json: Post.all
This returns all my Posts and in my Post serializer I have
class PostSerializer < ActiveModel::Serializer
has_many :comments
end
I want the number of comments returned in the JSON to be limited to 5 and have a variable which tells if more comments are there. Is this possible?
Edit: I think I'll manage the more part with a new call. But can't figure out how to limit the comments in the serializer
has_many :comments do
@object.comments.limit(5)
end
In your comments model write a scope method to limit the number of comments.
In models/comment.rb
scope :limited_comments, lambda { limit(5) }
In PostSerializer
has_many :comments
def comments
Comment.limited_comments
end
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With