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

19 lines
411 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.analyze({
tokenizer: "standard",
filter: [
{
type: "synonym_graph",
synonyms: ["dns, domain name system"],
},
"flatten_graph",
],
text: "domain name system is fragile",
});
console.log(response);
----