I'm retreiving Category
and its outfits
list. My problem is there are too many outfits
belong to a category
.
class CategoryListAPIView(generics.RetrieveAPIView):
serializer_class = CategoryDetailSerializer
...
class CategoryDetailSerializer(serializers.ModelSerializer):
outfits = serializers.SerializerMethodField()
...
class Meta:
model = Category
fields = (
...
'outfits',
...
)
def get_outfits(self, obj): //This is returning 39 items.
// Can we paginate this?
if obj.outfits is not None:
return OutfitListSerializer(obj.outfits, many=True).data
return None
Can we paginate it so that user can first see 24 outfits
and refresh to see the rest of outfits
?
If you want simple condition "first 24" and "the rest". You could control it by get parameters.
Now you can use GET
/categories/
for categories with first 24 outfits and GET/categories/?show_all=true
for full representation