23 lines
497 B
Plaintext
23 lines
497 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.putScript({
|
|
id: "my-search-template",
|
|
script: {
|
|
lang: "mustache",
|
|
source: {
|
|
query: {
|
|
multi_match: {
|
|
query: "{{query_string}}",
|
|
fields:
|
|
"[{{#text_fields}}{{user_name}}{{^last}},{{/last}}{{/text_fields}}]",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|