Files
elasticsearch-js/docs/_examples/exists.asciidoc
2013-12-27 16:41:38 -07:00

15 lines
240 B
Plaintext

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