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
Source:stackexchange.com