// 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); ----