Suppose I have a model like this one:
class Car(models.Model):
images = models.ManyToManyField(Image)
class Image(models.Model):
path = models.CharField()
type = models.CharField()
I want to expose two API views:
- cars list
- car details
In list view I want to show only images that have type="thumbnail". In details view I want to show images of type="image".
This is more or less what the list should look like:
[{
"id": 1,
"images": [1, 2],
},
{
"id": 2,
"images": [3, 4],
}]
And the details view:
{
"id": 1,
"images": [5],
}
Note that different image ids are displayed depending on the view.
So far my serializer looks like this:
class CarSerializer(serializers.ModelSerializer):
images = serializers.ManyPrimaryKeyRelatedField()
class Meta:
model = Car
List api view:
class CarList(generics.ListAPIView):
model = Car
serializer_class = CarSerializer
Details api view:
class CarDetails(generics.RetrieveAPIView):
model = Car
serializer_class = CarSerializer
This of course gives me all images in list as well as in details and forces clients to make additional calls to get image type that should be displayed.
Is there any generic way to do it? I have seen django-filter examples, but it seems that its only possible to filter which objects are listed, not what related objects in listed objects are listed.