allow sort for search queries with only filters (#2012)
This commit is contained in:
parent
3ff03960eb
commit
f20ebad772
@ -276,11 +276,15 @@ export default {
|
|||||||
// if nym, items must contain nym
|
// if nym, items must contain nym
|
||||||
if (nym) {
|
if (nym) {
|
||||||
filters.push({ wildcard: { 'user.name': `*${nym.slice(1).toLowerCase()}*` } })
|
filters.push({ wildcard: { 'user.name': `*${nym.slice(1).toLowerCase()}*` } })
|
||||||
|
// push same requirement to termQueries to avoid empty should clause
|
||||||
|
termQueries.push({ wildcard: { 'user.name': `*${nym.slice(1).toLowerCase()}*` } })
|
||||||
}
|
}
|
||||||
|
|
||||||
// if territory, item must be from territory
|
// if territory, item must be from territory
|
||||||
if (territory) {
|
if (territory) {
|
||||||
filters.push({ match: { 'sub.name': territory.slice(1) } })
|
filters.push({ match: { 'sub.name': territory.slice(1) } })
|
||||||
|
// push same requirement to termQueries to avoid empty should clause
|
||||||
|
termQueries.push({ match: { 'sub.name': territory.slice(1) } })
|
||||||
}
|
}
|
||||||
|
|
||||||
// if quoted phrases, items must contain entire phrase
|
// if quoted phrases, items must contain entire phrase
|
||||||
|
Loading…
x
Reference in New Issue
Block a user