Is there support for wildcard searches (* and ?) in elasticsearch-dsl-py?
If not (yet, I hope :), what would be the workaround?
Hi, there is support - just create the wildcard query:
>>> from elasticsearch_dsl import Search
>>> s = Search().query('wildcard', user='kim*')
Cool! Sorry for the useless issue!
But how to wildcard search in filter fields
Most helpful comment
Hi, there is support - just create the wildcard query: