Files
elasticsearch-js/docs/_examples/mlt.asciidoc
Spencer 9e3b71510f [15.x] Update docs to use async/await (#667) (#668)
Backports the following commits to 15.x:
 - Update docs to use async/await  (#667)
2018-05-23 14:32:16 -07:00

11 lines
229 B
Plaintext

.Search for similar documents using the `title` property of document `myindex/mytype/1`
[source,js]
---------
const response = await client.mlt({
index: 'myindex',
type: 'mytype',
id: 1,
mlt_fields: 'title'
});
---------