15 lines
240 B
Plaintext
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 {
|
|
// ...
|
|
}
|
|
});
|
|
--------- |