Skip to content
Advertisement

Is there a way to filter out items from RelatedManager in a ModelViewSet?

I’m using DRF for a simple API, and I was wondering if there’s a way to achieve this behavior:

  • I’ve got two models similar to the following:
JavaScript
  • And their serializers as follows:
JavaScript
  • This returns me an output similar to
JavaScript

which is totally fine. But what I’d really want to do is, if a Column has name=None, it’s filtered out from every API ViewSet. I’ve managed to do it on the ColumnViewSet by doing queryset = queryset.filter(name__isnull=False), but I can’t do it for the TableViewSet or others that might show a Column list.

I’ve tried tinkering with the ColumnSerializer, but the best I could get from it was to show nulls on the Column list.

I wonder if there’s a way of hiding those.

EDIT 1: Adding my ViewSets

JavaScript

Advertisement

Answer

You can work with a Prefetch object [Django-doc] to filter the related object collection, so:

JavaScript
Advertisement