Skip to content
Advertisement

How to return empty queryset from serializer.data Django Rest Framework

view.py

JavaScript

serializer.py

JavaScript

I want the serializer to return an empty response when no User DoesNotExist in the User Model, however I get the following error. How can i achieve this?

JavaScript

Advertisement

Answer

You are trying to serialize a queryset, so you need to add many=True to the serialization.

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement