43 lines
786 B
Plaintext
43 lines
786 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: {
|
|
text: "quick brown fox",
|
|
},
|
|
});
|
|
console.log(response);
|
|
|
|
const response1 = await client.index({
|
|
index: "my-index-000001",
|
|
id: 2,
|
|
refresh: "true",
|
|
document: {
|
|
text: "quick fox",
|
|
},
|
|
});
|
|
console.log(response1);
|
|
|
|
const response2 = await client.search({
|
|
index: "my-index-000001",
|
|
query: {
|
|
script_score: {
|
|
query: {
|
|
match: {
|
|
text: "quick brown fox",
|
|
},
|
|
},
|
|
script: {
|
|
source: "_termStats.termFreq().getAverage()",
|
|
},
|
|
},
|
|
},
|
|
});
|
|
console.log(response2);
|
|
----
|