ElasticSearch partial word search

I'm trying to search for a result by using part of a word and not getting a result.

i.e. Bob's Wood Fried Pizzaeria

The term "Pizza" in my search application does not bring this result back. Neither does "Woo". But "Bob's Fried" does return it

Outside of using a wildcard search, is there a way to configure our fields to pull back this result based on those partial word search terms?

Here is the config for this field in our mapping JSON:

"name": {
  "type": "text",
  "analyzer": "english",
  "fields": {
    "keyword": {
      "type": "keyword",
      "ignore_above": 256
    }
  }
}

Thank you.

Deleted response. Misread your question.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.