Oliver Sauder
Oliver Sauder
Could you provide the full stacktrace of the error? Thanks.
Thanks for the additional information. So this seems to be an issue with our openapi implementation. As far as I see does the DRF implementation skip views without serializers. We...
This issue only concerns `ModelSerializer` in case someone wants to use a different id than the primary key. For a use case where there is no model you can simply...
@mynameistechno [Here](https://github.com/adfinis-sygroup/timed-backend/blob/master/timed/reports/serializers.py) are some serializers which are working. They use a custom queryset but would be the same as when using a python plain object with a pk set. In...
@mynameistechno Yes this is true and I have also stated this in my https://github.com/django-json-api/django-rest-framework-json-api/issues/155#issuecomment-537432285 above (although it might not have been really clear) that a pk attribute/property needs to be...
@daveseff before you return the objects in `get_all_the_things` you could use `setattr` on each dict of the list calculating the primary key depending on the dict content. ```python setattr(obj_dict, 'pk',...
An include `articles.author` should work with the configuration you have. There are also [tests](https://github.com/django-json-api/django-rest-framework-json-api/blob/master/example/tests/integration/test_includes.py) for it. When looking at the history between version 2.5.0 and 2.6.0 it is not obvious...
I have overlooked this when I looked at your example that you use a serializer instead of a ResourceRelatedField. A serializer in rest framework would actually embed the relation whereas...
@jokiefer Wanted to follow up whether you are still interested in working on this PR?
I agree this is a bug and this should actually work. There are also other suffixes used like [min and max](https://github.com/carltongibson/django-filter/blob/fe90e3a5fdeaff0983d1325a3e9dcf3458ef078f/django_filters/widgets.py#L129) which should work too. Any there could be custom...