1
DRF does only support Django’s fields. You likely need to make some fields more explicits in the serializer’s declaration, like making tags
inherit from a serializer.ListField
.
Source:stackexchange.com
1
DRF does only support Django’s fields. You likely need to make some fields more explicits in the serializer’s declaration, like making tags
inherit from a serializer.ListField
.