The standard DRF serializers allow for partial validation (i.e. by passing partial=True) during a "partial update" (a PATCH method).
The current workaround requires making all fields optional, which is not ideal.
Is this something you'd fix in the drf-pydantic library?
The standard DRF serializers allow for
partialvalidation (i.e. by passingpartial=True) during a "partial update" (aPATCHmethod).The current workaround requires making all fields optional, which is not ideal.
Is this something you'd fix in the
drf-pydanticlibrary?