Files
elasticsearch-js/docs/doc_examples/2592e5361f7ea3b3dd1840f63d760dae.asciidoc
2024-07-29 17:10:05 -05:00

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);
----