21 lines
453 B
Plaintext
21 lines
453 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.stats({
|
|
metric: "fielddata",
|
|
human: "true",
|
|
fields: "my_join_field",
|
|
});
|
|
console.log(response);
|
|
|
|
const response1 = await client.nodes.stats({
|
|
metric: "indices",
|
|
index_metric: "fielddata",
|
|
human: "true",
|
|
fields: "my_join_field",
|
|
});
|
|
console.log(response1);
|
|
----
|