You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you do whoosh_seach("cool happy smile"), by default it will look for documents where all the three words are present. If you set or_=True, you will instead use the OR grouping.
now I can search with
results = BlogPost.query.whoosh_search('cool')
but what if I want to search multi words at the same time??? like
results = BlogPost.query.whoosh_search('cool', 'happy', 'smile')
Is this supported??
The text was updated successfully, but these errors were encountered: