Core concepts, definitions, basic syntax, and first principles expected in round 1 screening.
Three blocks:
model Author {
id Int @id @default(autoincrement())
books Book[]
}
model Book {
id Int @id @default(autoincrement())
author Author @relation(fields: [authorId], references: [id])
authorId Int
}
await prisma.user.create({ data: { email } });
await prisma.user.findUnique({ where: { email } });
await prisma.user.update({ where: { id }, data: { name } });
await prisma.user.deleteMany({ where: { inactive: true } });
findMany({ take, skip, orderBy, where })
You've completed the 5 free sample questions. Get unrestricted lifetime access to every question, model answer, implementation challenge, and all 27+ technologies for a single payment.
₹399 India / $9 International · One-time settlement · Zero subscription