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

27 lines
562 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.indices.create({
index: "common_grams_example",
settings: {
analysis: {
analyzer: {
index_grams: {
tokenizer: "whitespace",
filter: ["common_grams"],
},
},
filter: {
common_grams: {
type: "common_grams",
common_words: ["a", "is", "the"],
},
},
},
},
});
console.log(response);
----