in src/api/websites/db.ts [62:72]
SELECT to_json(n.*)::text
FROM lighthouse_audits n
WHERE n.url = o.url
ORDER BY time_created DESC
) as audits_json
FROM lighthouse_audits o
`;
if (options.where) {
query.append(`\n`);
query.append(options.where);
}