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

34 lines
558 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.index({
index: "my-index-000001",
id: 1,
refresh: "true",
document: {
product: "chocolate",
price: [20, 4],
},
});
console.log(response);
const response1 = await client.search({
query: {
term: {
product: "chocolate",
},
},
sort: [
{
price: {
order: "asc",
mode: "avg",
},
},
],
});
console.log(response1);
----