From f20ebad7728e15a7adbf82259296c95c4ba76f0e Mon Sep 17 00:00:00 2001 From: Edward Kung Date: Sun, 23 Mar 2025 09:53:45 -0700 Subject: [PATCH] allow sort for search queries with only filters (#2012) --- api/resolvers/search.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/api/resolvers/search.js b/api/resolvers/search.js index d66fb0d2..975066ee 100644 --- a/api/resolvers/search.js +++ b/api/resolvers/search.js @@ -276,11 +276,15 @@ export default { // if nym, items must contain nym if (nym) { 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) { 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