Open
Description
In my DRF project, I'm trying to implement filtering for multi-valued relationships that combines filters with logical AND
s, 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
Labels
No labels