[Answer]-Custom queryset returning multiple model instances to serializer

1👍

The base class ListAPIView internally instantiates the serializer with many=true, as you can see in the source.

If your get_queryset() method actually return a queryset, you should be fine.

Only when you instantiate the serializer directly, then you have to pass many=true

Leave a comment