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

20 lines
377 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.search({
aggs: {
matrixstats: {
matrix_stats: {
fields: ["poverty", "income"],
missing: {
income: 50000,
},
},
},
},
});
console.log(response);
----