© 2026 Hedgehog Software, LLC
export function queryQuestions() { return db.query.questionsTable.findMany({ limit: 5, orderBy: ({ createdAt }, { desc }) => desc(createdAt), with: { author: true, answers: { extras: // } }, }) }