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

32 lines
555 B
Plaintext

.See how a document is scored against a simple query
[source,js]
---------
client.explain({
// the document to test
index: 'myindex',
type: 'mytype',
id: '1',
// the query to score it against
q: 'field:value'
}, function (error, response) {
// ...
});
---------
.See how a document is scored against a query written in the Query DSL
[source,js]
---------
client.explain({
index: 'myindex',
type: 'mytype',
id: '1',
body: {
query: {
match: { title: 'test' }
}
}
}, function (error, response) {
// ...
});
---------