mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-10 06:55:32 +00:00
The order was random, which made it super hard to find anything. This changes the order to be alphabetically.
17 lines
304 B
Plaintext
17 lines
304 B
Plaintext
[[search-request-version]]
|
|
=== Version
|
|
|
|
Returns a version for each search hit.
|
|
|
|
[source,js]
|
|
--------------------------------------------------
|
|
GET /_search
|
|
{
|
|
"version": true,
|
|
"query" : {
|
|
"term" : { "user" : "kimchy" }
|
|
}
|
|
}
|
|
--------------------------------------------------
|
|
// CONSOLE
|