gab gab
10/09/2024, 2:29 PMconst exactMatchFilter = exactMatchFields.map(field => `${field}:=${query}`).join(' || ');
const flexibleSearchFilter = translatedFields.map(field => `${field}:${query}`).join(' || ');
const filterBy = `(${exactMatchFilter}) || (${flexibleSearchFilter})`;
should I just drop the query_by?