33 lines
693 B
Plaintext
33 lines
693 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: {
|
|
more_like_this: {
|
|
fields: ["name.first", "name.last"],
|
|
like: [
|
|
{
|
|
_index: "marvel",
|
|
doc: {
|
|
name: {
|
|
first: "Ben",
|
|
last: "Grimm",
|
|
},
|
|
_doc: "You got no idea what I'd... what I'd give to be invisible.",
|
|
},
|
|
},
|
|
{
|
|
_index: "marvel",
|
|
_id: "2",
|
|
},
|
|
],
|
|
min_term_freq: 1,
|
|
max_query_terms: 12,
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|