> For the complete documentation index, see [llms.txt](https://xiaoxiami.gitbook.io/elasticsearch/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://xiaoxiami.gitbook.io/elasticsearch/ji-chu/35query-dsldslfang-shi-cha-8be229/354zhu-yu-ji-bie-cha-8be228-term-level-queries/type-querylei-xing-cha-8be229.md).

# Type Query(类型查询)

过滤与所提供的文档或者映射类型相匹配的文档。

```
GET /_search
{
    "query": {
        "type" : {
            "value" : "my_type"
        }
    }
}
```
