Files
elasticsearch-js/docs/doc_examples/0dfde6a9d953822fd4b3aa0121ddd8fb.asciidoc
2024-12-11 10:12:08 -06:00

27 lines
547 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-app/_render_query",
body: {
params: {
query_string: "my first query",
text_fields: [
{
name: "title",
boost: 5,
},
{
name: "description",
boost: 1,
},
],
},
},
});
console.log(response);
----