© 2026 Hedgehog Software, LLC
const data = await db .select({ id: S.appointment.id }) .from(S.appointment) .orderBy(desc(S.appointment.createdAt)) .limit(perPage) .offset(perPage * (page - 1)); const resultCount = await db.select({ value: count() }).from(S.appointment);