Added/updated snippets for docs (#2318)
This commit is contained in:
18
docs/doc_examples/9403764e6eccad7b321b65e9a10c5727.asciidoc
Normal file
18
docs/doc_examples/9403764e6eccad7b321b65e9a10c5727.asciidoc
Normal file
@ -0,0 +1,18 @@
|
||||
// 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.search({
|
||||
aggs: {
|
||||
tags: {
|
||||
terms: {
|
||||
field: "tags",
|
||||
include: ".*sport.*",
|
||||
exclude: "water_.*",
|
||||
},
|
||||
},
|
||||
},
|
||||
});
|
||||
console.log(response);
|
||||
----
|
||||
Reference in New Issue
Block a user