20 lines
381 B
Plaintext
20 lines
381 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.indices.validateQuery({
|
|
index: "my-index-000001",
|
|
rewrite: "true",
|
|
query: {
|
|
more_like_this: {
|
|
like: {
|
|
_id: "2",
|
|
},
|
|
boost_terms: 1,
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|