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

21 lines
428 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: "apostrophe_example",
settings: {
analysis: {
analyzer: {
standard_apostrophe: {
tokenizer: "standard",
filter: ["apostrophe"],
},
},
},
},
});
console.log(response);
----