To load related primary keys with a serializer it is possible to:
- use
serializers.PrimaryKeyRelatedField(many=True, read_only=True)
- not define a related Serializer
Why does it take more than 20 seconds to load 6 records if I don't define a related serializer?
AltSchool/dynamic-rest is used together with djangorestframework==3.7.7
Thanks for any conceptual explanation.