123456789101112131415 |
- [[request-body-search-explain]]
- ==== Explain
- Enables explanation for each hit on how its score was computed.
- [source,console]
- --------------------------------------------------
- GET /_search
- {
- "explain": true,
- "query" : {
- "term" : { "user" : "kimchy" }
- }
- }
- --------------------------------------------------
|