Files
elasticsearch-js/docs/doc_examples/a162eb50853331c80596f5994e9d1c38.asciidoc
2025-01-07 12:52:21 -06:00

17 lines
393 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.transport.request({
method: "POST",
path: "/_application/search_application/my_search_application/_render_query",
body: {
params: {
query_string: "rock climbing",
},
},
});
console.log(response);
----