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

16 lines
319 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({
index: "file-path-test",
query: {
match: {
file_path: "/User/bob/photos/2017/05",
},
},
});
console.log(response);
----