30 lines
1.3 KiB
Plaintext
30 lines
1.3 KiB
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.searchApplication.put({
|
|
name: "my-example-app",
|
|
search_application: {
|
|
indices: ["example-index"],
|
|
template: {
|
|
script: {
|
|
lang: "mustache",
|
|
source:
|
|
'\n {\n "query": {\n "bool": {\n "must": [\n {{#query}}\n {{/query}}\n ],\n "filter": {{#toJson}}_es_filters{{/toJson}}\n }\n },\n "_source": {\n "includes": ["title", "plot"]\n },\n "highlight": {\n "fields": {\n "title": { "fragment_size": 0 },\n "plot": { "fragment_size": 200 }\n }\n },\n "aggs": {{#toJson}}_es_aggs{{/toJson}},\n "from": {{from}},\n "size": {{size}},\n "sort": {{#toJson}}_es_sort_fields{{/toJson}}\n }\n ',
|
|
params: {
|
|
query: "",
|
|
_es_filters: {},
|
|
_es_aggs: {},
|
|
_es_sort_fields: {},
|
|
size: 10,
|
|
from: 0,
|
|
},
|
|
dictionary: {},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|