Schema
The schema for Prisma is found inprisma/schema.prisma. This file contains the schema for the database tables and their relationships.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
prisma/schema.prisma. This file contains the schema for the database tables and their relationships.
import { prisma } from '~/core/db';
const user = await prisma.user.findUnique({
where: {
id: userId,
},
});