11 lines
181 B
Plaintext
11 lines
181 B
Plaintext
.Delete the document `/myindex/mytype/1`
|
|
[source,js]
|
|
---------
|
|
client.delete({
|
|
index: 'myindex',
|
|
type: 'mytype',
|
|
id: '1'
|
|
}, function (error, response) {
|
|
// ...
|
|
});
|
|
--------- |