# Longer queries return a lot of search results

**URL:** https://discuss.elastic.co/t/longer-queries-return-a-lot-of-search-results/266481
**Category:** Elasticsearch
**Created:** [March 7, 2021, 4:52pm UTC](https://discuss.elastic.co/t/longer-queries-return-a-lot-of-search-results/266481 "2021-03-07T16:52:05Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![vastevenson](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/vastevenson/32/75462_2.png) [@vastevenson](https://discuss.elastic.co/u/vastevenson)
#### Post date: [March 7, 2021, 4:52pm UTC](https://discuss.elastic.co/t/longer-queries-return-a-lot-of-search-results/266481/1 "2021-03-07T16:52:05Z")

</div>

When users type in queries like "Italy was cool and nice", my search query returns nearly every document in my index. What are the best practices to improve precision of search results? I feel like the multi\_match should clause with the fuzziness is the main culprit. Are there any recommendations on how to do fuzzy queries on select fields?

Here's my query body:

```auto
    "query": {
                    "bool": {
                        "must": [
                            {
                                "bool": {
                                    "should": [
                                        {
                                            "multi_match": {
                                                "query":self.query,
                                                "fuzziness": "AUTO"
                                            }
                                        },
                                        {
                                            "multi_match": {
                                                "query": self.query,
                                                "fields": [
                                                    "brief_summary^3",
                                                    "brief_title^3",
                                                    "mesh_term_list^3"
                                                ]
                                            }
                                        },
                                        {
                                            "match": {
                                                "id": self.query
                                            }
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                }

```

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [April 4, 2021, 4:52pm UTC](https://discuss.elastic.co/t/longer-queries-return-a-lot-of-search-results/266481/2 "2021-04-04T16:52:11Z")

</div>

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