query.asciidoc 349 B

123456789101112131415
  1. [[request-body-search-query]]
  2. ==== Query
  3. The query element within the search request body allows to define a
  4. query using the <<query-dsl,Query DSL>>.
  5. [source,console]
  6. --------------------------------------------------
  7. GET /_search
  8. {
  9. "query" : {
  10. "term" : { "user" : "kimchy" }
  11. }
  12. }
  13. --------------------------------------------------