Files
elasticsearch-js/docs/_examples/exists.asciidoc
2015-10-23 17:56:41 +02:00

15 lines
240 B
Plaintext

.Check that the document `/myindex/mytype/1` exist
[source,js]
---------
client.exists({
index: 'myindex',
type: 'mytype',
id: 1
}, function (error, exists) {
if (exists === true) {
// ...
} else {
// ...
}
});
---------