WARNING: Version 5.x has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
Exists
editExists
editCheck that the document /game-of-thrones/1
exists.
Since this API uses the HEAD
method, the body value will be boolean.
'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)