|
|
|
@ -1,7 +1,4 @@
|
|
|
|
|
|
|
|
|
|
module.exports = { |
|
|
|
|
'query': { |
|
|
|
|
'filtered': { |
|
|
|
|
'query': { |
|
|
|
|
'bool': { |
|
|
|
|
'must': [{ |
|
|
|
@ -9,7 +6,7 @@ module.exports = {
|
|
|
|
|
'name.default': { |
|
|
|
|
'query': 'test', |
|
|
|
|
'boost': 1, |
|
|
|
|
'analyzer': 'peliasIndexOneEdgeGram' |
|
|
|
|
'analyzer': 'peliasQueryFullToken' |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}], |
|
|
|
@ -73,21 +70,17 @@ module.exports = {
|
|
|
|
|
'weight': 2 |
|
|
|
|
}] |
|
|
|
|
} |
|
|
|
|
}] |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
'filter': { |
|
|
|
|
'bool': { |
|
|
|
|
'must': [{ |
|
|
|
|
}], |
|
|
|
|
'filter': [{ |
|
|
|
|
'terms': { |
|
|
|
|
'category': ['retail','food'] |
|
|
|
|
'category': ['retail', 'food'] |
|
|
|
|
} |
|
|
|
|
}] |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
'sort': [ '_score' ], |
|
|
|
|
'size': 20, |
|
|
|
|
'track_scores': true |
|
|
|
|
'track_scores': true, |
|
|
|
|
'sort': [ |
|
|
|
|
'_score' |
|
|
|
|
] |
|
|
|
|
}; |
|
|
|
|