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

16 lines
310 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.deleteByQuery({
index: "my-data-stream",
query: {
match: {
"user.id": "vlb44hny",
},
},
});
console.log(response);
----