# Boost main author/title results with mixed search, and save some of its results for end of list.
# boost author, title results
# Boost main author/title results with mixed search, and save some of its results for end of list.
# boost author, title results
- author_title_mixed = search.search_some(query, ['authors', 'title', 'tags'])
+ author_title_mixed = search.search_some(query, ['authors', 'title', 'tags'], query_terms=theme_terms)
# Because the query is using only one field.
text_phrase = SearchResult.aggregate(
search.search_phrase(query, 'text', snippets=True, book=False),
# Because the query is using only one field.
text_phrase = SearchResult.aggregate(
search.search_phrase(query, 'text', snippets=True, book=False),
- search.search_some(query, ['text'], snippets=True, book=False))
+ search.search_some(query, ['text'], snippets=True, book=False, query_terms=theme_terms))