From e98709d85416ac938cec4684e99bd35e9e05631f Mon Sep 17 00:00:00 2001 From: Lars Hampe Date: Sat, 9 Nov 2024 21:31:30 +0100 Subject: [PATCH] feat(api): sort db entries by createdAt date --- apps/api/src/access-token/list.ts | 3 ++- apps/api/src/page/list.ts | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/api/src/access-token/list.ts b/apps/api/src/access-token/list.ts index 8f1f306..3089931 100644 --- a/apps/api/src/access-token/list.ts +++ b/apps/api/src/access-token/list.ts @@ -1,7 +1,7 @@ import { changelog, db } from '@boring.tools/database' import { AccessTokenListOutput } from '@boring.tools/schema' import { createRoute } from '@hono/zod-openapi' -import { eq } from 'drizzle-orm' +import { desc, eq } from 'drizzle-orm' import { HTTPException } from 'hono/http-exception' import type { accessTokenApi } from '.' @@ -31,6 +31,7 @@ export const registerAccessTokenList = (api: typeof accessTokenApi) => { const userId = await verifyAuthentication(c) const result = await db.query.access_token.findMany({ where: eq(changelog.userId, userId), + orderBy: () => desc(changelog.createdAt), }) if (!result) { diff --git a/apps/api/src/page/list.ts b/apps/api/src/page/list.ts index 8722ccb..e515313 100644 --- a/apps/api/src/page/list.ts +++ b/apps/api/src/page/list.ts @@ -1,7 +1,7 @@ import { db, page } from '@boring.tools/database' import { PageListOutput } from '@boring.tools/schema' import { createRoute } from '@hono/zod-openapi' -import { and, eq } from 'drizzle-orm' +import { and, desc, eq } from 'drizzle-orm' import { HTTPException } from 'hono/http-exception' import { verifyAuthentication } from '../utils/authentication' @@ -33,6 +33,7 @@ export const registerPageList = (api: typeof pageApi) => { const result = await db.query.page.findMany({ where: and(eq(page.userId, userId)), + orderBy: () => desc(page.createdAt), }) if (!result) {