When a librarian or a patron makes a mistake on a title: i.e.: what color is my parachute for: what color is your parachute They can end up with no results. In playing around in Elastic, changing default operator to 'OR' and providing a 'minimum_should_match' allow for this search to succeed - the lower the should was, the more hits I got, but making it an option would be interesting. Koha/SearchEngine/Elasticsearch/QueryBuilder.pm 200 $res->{query} = { 201 query_string => { 202 query => $query, 203 fuzziness => $fuzzy_enabled ? 'auto' : '0', 204 default_operator => 'AND', 205 fields => $fields, 206 lenient => JSON::true, 207 analyze_wildcard => JSON::true, 208 } 209 }; Will try to poc something