Closed
Description
Currently, api/v1/resources/
uses filters.SearchFilter
as its filter_backend. This particular filter does a search on all fields for the requested parameters, which is not granular enough for our search needs.
As in this article: https://medium.com/better-programming/how-to-make-search-fields-dynamic-in-django-rest-framework-72922bfa1543? we need to make this api endpoint more dynamically searchable by implementing a custom filter_backend.