Order of Serializer Validation in Django REST Framework
Situation While working with validation in the Django REST Framework’s ModelSerializer, I have noticed that the Meta.model fields are always validated, even when it does not necessarily make sense to do so. Take the following example for a User model’s serialization: I have an endpoint that creates a user. As such, there is a password … Read more