Filter Django Haystack results like QuerySet?
Posted
by prometheus
on Stack Overflow
See other posts from Stack Overflow
or by prometheus
Published on 2010-01-29T02:01:11Z
Indexed on
2010/05/04
23:08 UTC
Read the original article
Hit count: 431
Is it possible to combine a Django Haystack search with "built-in" QuerySet filter operations, specifically filtering with Q() instances and lookup types not supported by SearchQuerySet? In either order:
haystack-searched -> queryset-filtered
or
queryset-filtered -> haystack-searched
Browsing the Django Haystack documentation didn't give any directions how to do this.
© Stack Overflow or respective owner