34 lines
558 B
Plaintext
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);
|
|
----
|