22 lines
467 B
Plaintext
22 lines
467 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}},{{/text_fields}}]",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|