chore: limpiar

This commit is contained in:
Cat /dev/Nulo 2024-01-04 22:52:53 -03:00
parent 26cb7b80e3
commit 9829d40ee9

View file

@ -7,7 +7,7 @@ export const load: PageServerLoad = async ({ url }) => {
const query = url.searchParams.get("q"); const query = url.searchParams.get("q");
let results: null | { ean: string; name: string; imageUrl: string }[] = null; let results: null | { ean: string; name: string; imageUrl: string }[] = null;
if (query) { if (query) {
const sqlQuery = sql`select p.ean, p.name, p.image_url as imageUrl, p.fetched_at from precios_fts f const sqlQuery = sql`select p.ean, p.name, p.image_url as imageUrl from precios_fts f
join precios p on p.ean = f.ean join precios p on p.ean = f.ean
where f.name match ${`"${query}"`} where f.name match ${`"${query}"`}
group by p.ean group by p.ean
@ -17,4 +17,3 @@ export const load: PageServerLoad = async ({ url }) => {
return { query, results }; return { query, results };
}; };
// order by p.fetched_at