| 1234567891011121314151617 | [[query-dsl-type-query]]=== Type QueryFilters documents matching the provided document / mapping type.[source,js]--------------------------------------------------GET /_search{    "query": {        "type" : {            "value" : "_doc"        }    }}    --------------------------------------------------// CONSOLE
 |