drf-haystack icon indicating copy to clipboard operation
drf-haystack copied to clipboard

Haystack for Django REST Framework

Results 31 drf-haystack issues
Sort by recently updated
recently updated
newest added

Is there a way to filter by null values? Something like: `?load_management_person_id__isnull=True`

question

Hi there, I'm using Haystack with the DRF and I noticed that when I added the get_serializer_class to my Haystack viewset, the pagination returned `{"detail": "Invalid page."}` for every page...

bug

Is it possible to add filters to nested SearchFields? For example: the following SearchField: ``` class DocumentField(SearchField): field_type = 'nested' properties = { 'letters_count': {'type': 'integer'}, } ``` Is used...

enhancement

Hi, Could please document the settings that is available with drf-haystack. Also a little bit more detail regarding query builder, custom fields and so on. If query builder, etc are...

enhancement

Add support for customizable query facets.

help wanted

I would like to return spelling suggestions in my serializer. How would I do that? Thanks Haystack method: http://django-haystack.readthedocs.io/en/latest/searchqueryset_api.html?#SearchQuerySet.spelling_suggestion

enhancement

We should have a more consistent way of performing type conversions for filtered parameter values. Ref #45

enhancement

When applying Term Boost to a `SearchQuerySet`, other results are discarded. This seems to me like a bug in [django-haystack](https://github.com/django-haystack/django-haystack/). See https://github.com/django-haystack/django-haystack/issues/1235 for details.

bug