Skip to content

Combining filters for multi-valued relationships with AND #351

Open
@nimame

Description

@nimame

In my DRF project, I'm trying to implement filtering for multi-valued relationships that combines filters with logical ANDs, like in:

a) Blog.objects.filter(entry__headline__contains='Lennon', entry__pub_date__year=2008)

instead of OR like in:

b) Blog.objects.filter(entry__headline__contains='Lennon').filter(entry__pub_date__year=2008)

The following results in b):

from rest_framework import viewsets, serializers
from rest_framework_filters.backends import RestFrameworkFilterBackend


class BlogSerializer(serializers.ModelSerializer):
    class Meta:
        model = Blog


class BlogViewSet(viewsets.ModelViewSet):
    serializer_class = BlogSerializer
    filter_backends = (RestFrameworkFilterBackend, )
    filterset_fields = {
        'entry__headline': ['contains'],
        'entry__pub_date': ['year__exact']
    }

Is there a way to get a) without specifying the filter explicitly? If no, could someone provide an example for the explicit filter based on the one I provided?

Thank you.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions