Files
elasticsearch-js/docs/examples/exists.asciidoc
Tomas Della Vedova 4537308c38 Doc updates (#791)
Updates for better displaying the documentation in the website.
2019-03-27 07:45:31 +01:00

34 lines
643 B
Plaintext

[[exists_examples]]
== Exists
Check that the document `/game-of-thrones/1` exists.
NOTE: Since this API uses the `HEAD` method, the body value will be boolean.
[source,js]
---------
'use strict'
const { Client } = require('@elastic/elasticsearch')
const client = new Client({ node: 'http://localhost:9200' })
async function run () {
await client.index({
index: 'game-of-thrones',
id: '1',
body: {
character: 'Ned Stark',
quote: 'Winter is coming.'
}
})
const { body } = await client.exists({
index: 'game-of-thrones',
id: 1
})
console.log(body) // true
}
run().catch(console.log)
---------