29 lines
535 B
Plaintext
29 lines
535 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.msearchTemplate({
|
|
index: "my-index",
|
|
search_templates: [
|
|
{},
|
|
{
|
|
id: "my-search-template",
|
|
params: {
|
|
query_string: "hello world",
|
|
from: 0,
|
|
size: 10,
|
|
},
|
|
},
|
|
{},
|
|
{
|
|
id: "my-other-search-template",
|
|
params: {
|
|
query_type: "match_all",
|
|
},
|
|
},
|
|
],
|
|
});
|
|
console.log(response);
|
|
----
|