Files
elasticsearch-js/docs/_examples/index.asciidoc
2014-07-10 18:04:15 -07:00

16 lines
239 B
Plaintext

.Create or update a document
[source,js]
---------
client.index({
index: 'myindex',
type: 'mytype',
id: '1',
body: {
title: 'Test 1',
tags: ['y', 'z'],
published: true,
}
}, function (error, response) {
});
---------