34 lines
503 B
Plaintext
34 lines
503 B
Plaintext
// This file is autogenerated, DO NOT EDIT
|
|
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
|
|
|
[source, js]
|
|
----
|
|
const response = await client.search({
|
|
index: 'my_index',
|
|
body: {
|
|
sort: [
|
|
{
|
|
post_date: {
|
|
order: 'asc'
|
|
}
|
|
},
|
|
'user',
|
|
{
|
|
name: 'desc'
|
|
},
|
|
{
|
|
age: 'desc'
|
|
},
|
|
'_score'
|
|
],
|
|
query: {
|
|
term: {
|
|
user: 'kimchy'
|
|
}
|
|
}
|
|
}
|
|
})
|
|
console.log(response)
|
|
----
|
|
|