23 lines
413 B
Plaintext
23 lines
413 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({
|
|
body: {
|
|
query: {
|
|
function_score: {
|
|
field_value_factor: {
|
|
field: 'likes',
|
|
factor: 1.2,
|
|
modifier: 'sqrt',
|
|
missing: 1
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|
|
console.log(response)
|
|
----
|
|
|