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

16 lines
238 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) {
});
---------