I'm building a text search with python and Flask-Whooshalchemy, currently I have something like this:
Entry.query.whoosh_search('something').all()
Which goes through body and title of Entry. However, it returns true only if content has that exact string. So for example
Entry.query.whoosh_search('cat').all()
returns entries with "I have a cat" but not "housecat" or "cats".
How can I make the search find strings inside strings?