31 lines
536 B
Plaintext
31 lines
536 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({
|
|
query: {
|
|
term: {
|
|
product: "chocolate",
|
|
},
|
|
},
|
|
sort: [
|
|
{
|
|
"offer.price": {
|
|
mode: "avg",
|
|
order: "asc",
|
|
nested: {
|
|
path: "offer",
|
|
filter: {
|
|
term: {
|
|
"offer.color": "blue",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
],
|
|
});
|
|
console.log(response);
|
|
----
|