In Django you can remove items from a QuerySet by doing this as documented here:
queryset = QuerySet.remove(item)
Haystack SearchQuerySet is build on QuerySet but it appears that the remove method was not implemented. Does anyone know of a way to remove items in a SearchQuerySet?
FWIW I am trying to do a second level of filtering for a client. Basically I’m interating over the SearchQuerySet for a couple specific properties. The idea is if they don’t have it I want to remove them.
Thanks
Have you tried using
exclude? I.e.