Revert "Revert "Updated search query""
This commit is contained in:
parent
e7d46c8082
commit
0557855fab
1 changed files with 115 additions and 103 deletions
|
@ -39,6 +39,29 @@ function getResults (input) {
|
|||
_source: ['name', 'value', 'claimId'],
|
||||
body : {
|
||||
'query': {
|
||||
'bool': {
|
||||
'should': [
|
||||
{
|
||||
'match': {
|
||||
'bid_state': {
|
||||
// Controlling claims should get higher placement in search results.
|
||||
'query': 'Controlling',
|
||||
'boost': 20,
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
'function_score': {
|
||||
'script_score': {
|
||||
'script': { // 100 LBC adds 1 point to the score
|
||||
'source': "0.00000001 * doc['effective_amount'].value",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
],
|
||||
'must': [
|
||||
{
|
||||
'bool': {
|
||||
'should': [
|
||||
{ // Match search text as phrase - Name
|
||||
|
@ -139,26 +162,15 @@ function getResults (input) {
|
|||
],
|
||||
},
|
||||
},
|
||||
size: input.size,
|
||||
from: input.from,
|
||||
},
|
||||
/* body : {
|
||||
'query': {
|
||||
'bool': {
|
||||
'must': {
|
||||
'query_string': {
|
||||
'query' : '*' + input.s.trim() + '*',
|
||||
'fields': [
|
||||
'name',
|
||||
'value.stream.metadata.author',
|
||||
'value.stream.metadata.title',
|
||||
'value.stream.metadata.description',
|
||||
],
|
||||
},
|
||||
},
|
||||
size: input.size,
|
||||
from: input.from,
|
||||
sort: {
|
||||
_score: 'desc',
|
||||
},
|
||||
},
|
||||
}, */
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue