Files
elasticsearch-js/docs/doc_examples/2bacdcb278705d944f367cfb984cf4d2.asciidoc
2024-07-29 17:10:05 -05:00

32 lines
516 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-000001",
sort: [
{
post_date: {
order: "asc",
format: "strict_date_optional_time_nanos",
},
},
"user",
{
name: "desc",
},
{
age: "desc",
},
"_score",
],
query: {
term: {
user: "kimchy",
},
},
});
console.log(response);
----