11 lines
160 B
Plaintext
11 lines
160 B
Plaintext
.Get `/myindex/mytype/1`
|
|
[source,js]
|
|
---------
|
|
client.get({
|
|
index: 'myindex',
|
|
type: 'mytype',
|
|
id: 1
|
|
}, function (error, response) {
|
|
// ...
|
|
});
|
|
--------- |