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

remove, there's no way to remove a single item from the queryset, so filing some sort of bug/feature request with Haystack is the solution. If you convert the queryset to a list, you can uselist.remove, but then you lose the queryset functionality. – Chris Pratt Jan 3 '12 at 19:38removeonly a valid method on query sets for related items? – mipadi Jan 3 '12 at 21:26