17 lines
373 B
Plaintext
17 lines
373 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.refresh();
|
|
console.log(response);
|
|
|
|
const response1 = await client.search({
|
|
index: "my-index-000001",
|
|
size: 0,
|
|
q: "extra:test",
|
|
filter_path: "hits.total",
|
|
});
|
|
console.log(response1);
|
|
----
|