Filtering

The default behavior of REST framework's generic list views is to return the entire queryset for a model manager. Often you will want your API to restrict the items that are returned by the queryset.

The simplest way to filter the queryset of any view that subclasses is to override the .get_queryset() method.

Overriding this method allows you to customize the queryset returned by the view in a number of different ways.

You might want to filter the queryset to ensure that only results relevant to the currently authenticated user making the request are returned.

You can do so by filtering based on the value of request.user.

For example:

Filtering against the URL

Another style of filtering might involve restricting the queryset based on some part of the URL.

For example if your URL config contained an entry like this:

  1. url('^purchases/(?P<username>.+)/$', PurchaseList.as_view()),

You could then write a view that returned a purchase queryset filtered by the username portion of the URL:

  1. class PurchaseList(generics.ListAPIView):
  2. serializer_class = PurchaseSerializer
  3. def get_queryset(self):
  4. """
  5. This view should return a list of all the purchases for
  6. the user as determined by the username portion of the URL.
  7. """
  8. username = self.kwargs['username']
  9. return Purchase.objects.filter(purchaser__username=username)

Filtering against query parameters

A final example of filtering the initial queryset would be to determine the initial queryset based on query parameters in the url.

We can override .get_queryset() to deal with URLs such as http://example.com/api/purchases?username=denvercoder9, and filter the queryset only if the username parameter is included in the URL:

  1. class PurchaseList(generics.ListAPIView):
  2. serializer_class = PurchaseSerializer
  3. def get_queryset(self):
  4. """
  5. Optionally restricts the returned purchases to a given user,
  6. by filtering against a `username` query parameter in the URL.
  7. queryset = Purchase.objects.all()
  8. username = self.request.query_params.get('username', None)
  9. if username is not None:
  10. queryset = queryset.filter(purchaser__username=username)
  11. return queryset

Generic Filtering

As well as being able to override the default queryset, REST framework also includes support for generic filtering backends that allow you to easily construct complex searches and filters.

Generic filters can also present themselves as HTML controls in the browsable API and admin API.

Setting filter backends

The default filter backends may be set globally, using the DEFAULT_FILTER_BACKENDS setting. For example.

  1. REST_FRAMEWORK = {
  2. 'DEFAULT_FILTER_BACKENDS': ['django_filters.rest_framework.DjangoFilterBackend']
  3. }

You can also set the filter backends on a per-view, or per-viewset basis,using the GenericAPIView class-based views.

  1. import django_filters.rest_framework
  2. from django.contrib.auth.models import User
  3. from myapp.serializers import UserSerializer
  4. from rest_framework import generics
  5. class UserListView(generics.ListAPIView):
  6. queryset = User.objects.all()
  7. serializer_class = UserSerializer
  8. filter_backends = [django_filters.rest_framework.DjangoFilterBackend]

Filtering and object lookups

Note that if a filter backend is configured for a view, then as well as being used to filter list views, it will also be used to filter the querysets used for returning a single object.

For instance, given the previous example, and a product with an id of 4675, the following URL would either return the corresponding object, or return a 404 response, depending on if the filtering conditions were met by the given product instance:

  1. http://example.com/api/products/4675/?category=clothing&max_price=10.00

Note that you can use both an overridden .get_queryset() and generic filtering together, and everything will work as expected. For example, if Product had a many-to-many relationship with User, named purchase, you might want to write a view like this:

  1. class PurchasedProductsList(generics.ListAPIView):
  2. """
  3. Return a list of all the products that the authenticated
  4. """
  5. model = Product
  6. serializer_class = ProductSerializer
  7. filterset_class = ProductFilter
  8. def get_queryset(self):
  9. user = self.request.user
  10. return user.purchase_set.all()

API Guide

DjangoFilterBackend

The library includes a DjangoFilterBackend class whichsupports highly customizable field filtering for REST framework.

You should now either add the filter backend to your settings:

  1. REST_FRAMEWORK = {
  2. 'DEFAULT_FILTER_BACKENDS': ['django_filters.rest_framework.DjangoFilterBackend']
  3. }

Or add the filter backend to an individual View or ViewSet.

  1. from django_filters.rest_framework import DjangoFilterBackend
  2. class UserListView(generics.ListAPIView):
  3. ...
  4. filter_backends = [DjangoFilterBackend]

If all you need is simple equality-based filtering, you can set a filterset_fields attribute on the view, or viewset, listing the set of fields you wish to filter against.

  1. class ProductList(generics.ListAPIView):
  2. queryset = Product.objects.all()
  3. filter_backends = [DjangoFilterBackend]
  4. filterset_fields = ['category', 'in_stock']

This will automatically create a FilterSet class for the given fields, and will allow you to make requests such as:

  1. http://example.com/api/products?category=clothing&in_stock=True

For more advanced filtering requirements you can specify a FilterSet class that should be used by the view.You can read more about FilterSets in the django-filter documentation.It's also recommended that you read the section on .

SearchFilter

The SearchFilter class supports simple single query parameter based searching, and is based on the Django admin's search functionality.

When in use, the browsable API will include a SearchFilter control:

Search Filter

The SearchFilter class will only be applied if the view has a search_fields attribute set. The search_fields attribute should be a list of names of text type fields on the model, such as CharField or TextField.

  1. from rest_framework import filters
  2. class UserListView(generics.ListAPIView):
  3. queryset = User.objects.all()
  4. serializer_class = UserSerializer
  5. filter_backends = [filters.SearchFilter]
  6. search_fields = ['username', 'email']

This will allow the client to filter the items in the list by making queries such as:

  1. http://example.com/api/users?search=russell

You can also perform a related lookup on a ForeignKey or ManyToManyField with the lookup API double-underscore notation:

  1. search_fields = ['username', 'email', 'profile__profession']

By default, searches will use case-insensitive partial matches. The search parameter may contain multiple search terms, which should be whitespace and/or comma separated. If multiple search terms are used then objects will be returned in the list only if all the provided terms are matched.

The search behavior may be restricted by prepending various characters to the search_fields.

  • '^' Starts-with search.
  • '=' Exact matches.
  • '@' Full-text search. (Currently only supported Django's MySQL backend.)
  • '$' Regex search.

For example:

By default, the search parameter is named 'search', but this may be overridden with the SEARCH_PARAM setting.

To dynamically change search fields based on request content, it's possible to subclass the SearchFilter and override the function. For example, the following subclass will only search on title if the query parameter title_only is in the request:

  1. from rest_framework import filters
  2. class CustomSearchFilter(filters.SearchFilter):
  3. def get_search_fields(self, view, request):
  4. if request.query_params.get('title_only'):
  5. return ['title']
  6. return super(CustomSearchFilter, self).get_search_fields(view, request)

For more details, see the .


OrderingFilter

The OrderingFilter class supports simple query parameter controlled ordering of results.

By default, the query parameter is named 'ordering', but this may by overridden with the ORDERING_PARAM setting.

For example, to order users by username:

  1. http://example.com/api/users?ordering=username

The client may also specify reverse orderings by prefixing the field name with '-', like so:

  1. http://example.com/api/users?ordering=-username
  1. http://example.com/api/users?ordering=account,username

It's recommended that you explicitly specify which fields the API should allowing in the ordering filter. You can do this by setting an ordering_fields attribute on the view, like so:

  1. class UserListView(generics.ListAPIView):
  2. queryset = User.objects.all()
  3. serializer_class = UserSerializer
  4. filter_backends = [filters.OrderingFilter]
  5. ordering_fields = ['username', 'email']

This helps prevent unexpected data leakage, such as allowing users to order against a password hash field or other sensitive data.

If you don't specify an ordering_fields attribute on the view, the filter class will default to allowing the user to filter on any readable fields on the serializer specified by the serializer_class attribute.

If you are confident that the queryset being used by the view doesn't contain any sensitive data, you can also explicitly specify that a view should allow ordering on any model field or queryset aggregate, by using the special value 'all'.

  1. class BookingsListView(generics.ListAPIView):
  2. queryset = Booking.objects.all()
  3. serializer_class = BookingSerializer
  4. filter_backends = [filters.OrderingFilter]
  5. ordering_fields = '__all__'

Specifying a default ordering

If an ordering attribute is set on the view, this will be used as the default ordering.

Typically you'd instead control this by setting order_by on the initial queryset, but using the ordering parameter on the view allows you to specify the ordering in a way that it can then be passed automatically as context to a rendered template. This makes it possible to automatically render column headers differently if they are being used to order the results.

  1. class UserListView(generics.ListAPIView):
  2. queryset = User.objects.all()
  3. serializer_class = UserSerializer
  4. filter_backends = [filters.OrderingFilter]
  5. ordering = ['username']

The ordering attribute may be either a string or a list/tuple of strings.


Custom generic filtering

You can also provide your own generic filtering backend, or write an installable app for other developers to use.

To do so override BaseFilterBackend, and override the .filter_queryset(self, request, queryset, view) method. The method should return a new, filtered queryset.

As well as allowing clients to perform searches and filtering, generic filter backends can be useful for restricting which objects should be visible to any given request or user.

Example

For example, you might need to restrict users to only being able to see objects they created.

We could achieve the same behavior by overriding get_queryset() on the views, but using a filter backend allows you to more easily add this restriction to multiple views, or to apply it across the entire API.

Generic filters may also present an interface in the browsable API. To do so you should implement a to_html() method which returns a rendered HTML representation of the filter. This method should have the following signature:

to_html(self, request, queryset, view)

The method should return a rendered HTML string.

Pagination & schemas

You can also make the filter controls available to the schema autogenerationthat REST framework provides, by implementing a get_schema_fields() method. This method should have the following signature:

get_schema_fields(self, view)

The method should return a list of coreapi.Field instances.

Third party packages

The following third party packages provide additional filter implementations.

Django REST framework filters package

The django-rest-framework-filters package works together with the DjangoFilterBackend class, and allows you to easily create filters across relationships, or create multiple filter lookup types for a given field.

Django REST framework full word search filter

The developed as alternative to filters.SearchFilter which will search full word in text, or exact match.

Django URL Filter

django-url-filter provides a safe way to filter data via human-friendly URLs. It works very similar to DRF serializers and fields in a sense that they can be nested except they are called filtersets and filters. That provides easy way to filter related data. Also this library is generic-purpose so it can be used to filter other sources of data and not only Django QuerySets.