Open dmuseychuk-invgate opened 11 months ago
Thanks for your report. This certainly seems to be an issue. I think your proposed fixed will only work partially, though, as the default included resource will still not work.
In any case, I am very surprised that this issue only comes up now, and I am wondering how many people use Django Polymorphic and DJA together. The thing is that the integration of Django Polymorphic has not been done very well and the implementation is cluttered all over the code base and the maintainability of DJA suffered because of it. In general, Django Polymorphic is an optional feature and should not affect other users (e.g. the code path should not change for normal use because of it), but how it is implemented now it certainly does.
Before we jump into fixing this, I will start a discussion on how we should continue with Django Polymorphic support.
I have noticed that I talked about starting a discussion on Polymorphic support within DJA, but actually never referenced it here.
So the discussion can be found at #1194 and any feedback and use cases what it is used for are very welcome.
When using
PolymorphicModelSerializer
withJSONRenderer
, theextract_included
method is retrieving the base polymorphic serializer instead of the specific serializer corresponding to the object instance. This results in theincludes
not being processed correctly, as the base polymorphic serializer is not equipped to handle the specifics of each derived instance.It appears that the issue can be resolved by modifying the
render
method to correctly identify and use the appropriate serializer based on the object instance during the rendering process. This adjustment should enableincludes
to function as expected with polymorphic serializers.