type-query.asciidoc 335 B

1234567891011121314151617
  1. [[query-dsl-type-query]]
  2. === Type Query
  3. Filters documents matching the provided document / mapping type.
  4. [source,js]
  5. --------------------------------------------------
  6. GET /_search
  7. {
  8. "query": {
  9. "type" : {
  10. "value" : "my_type"
  11. }
  12. }
  13. }
  14. --------------------------------------------------
  15. // CONSOLE