I'm using flask_whooshalchemy and trying to do partial matches on texts. In the docs for flask_whooshalchemy it mentions using a 'like' parameter. So I have this query:
result = Property.query.whoosh_search(search_str, like=True).filter(
min_price <= Property.asking_price)
But this throws an unexpected keyword argument. Clearly they're using it in the docs and curious what I'm doing incorrectly.