Database

Drizzle ORM & useDB

Learn how to query data Drizzle ORM

The useDB() composable is provided to access the database and perform CRUD operations. It's auto-imported across the project, so you can use it in any file.

Usage

server/database/queries/feedback.ts
import { eq, desc } from "drizzle-orm";

export const getFeedback = async () => {
  const feedback = await useDB().query.feedback.findMany({
    with: {
      user: {
        columns: {
          hashedPassword: false,
        },
      },
    },
    orderBy: [desc(tables.feedback.createdAt)],
  });
  return feedback;
};

Supersaas database actions

We are following the repository pattern for database actions. This means that each related action has its own file in the server/database/queries directory.

Available actions

FileDescriptionLocation
admin.tsEverything related to super adminserver/database/queries/auth.ts
auth.tsAll auth related actionsserver/database/queries/auth.ts
customers.tsStripe customersserver/database/queries/customers.ts
passkeys.tsCredentials and webauthnchallengesserver/database/queries/passkeys.ts
posts.tsThis is for a small demo in supersaasserver/database/queries/posts.ts
stripe.tsStripe products and pricesserver/database/queries/stripe.ts
subscriptions.tsStripe subscriptionsserver/database/queries/subscriptions.ts
teams.tsTeams and team membersserver/database/queries/teams.ts
users.tsUsersserver/database/queries/users.ts

These query files have their own respective query actions.