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

11 lines
181 B
Plaintext

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