IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Get
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
Get
editThe get API allows to get a typed JSON document from the index based on its id.
The following example gets a JSON document from an index called
game-of-thrones, under a type called _doc, with id valued '1'.
'use strict'
const { Client } = require('@elastic/elasticsearch')
const client = new Client({
cloud: { id: '<cloud-id>' },
auth: { apiKey: 'base64EncodedKey' }
})
async function run () {
await client.index({
index: 'game-of-thrones',
id: '1',
document: {
character: 'Ned Stark',
quote: 'Winter is coming.'
}
})
const document = await client.get({
index: 'game-of-thrones',
id: '1'
})
console.log(document)
}
run().catch(console.log)