Description and expected behavior
Example schema:
model User {
id Int @id @default(autoincrement())
type String
@@auth
@@delegate(type)
}
model HappyUser extends User {
veryHappy Boolean
}
model SadUser extends User {
verySad Boolean
}
model Fridge {
id Int @id @default(autoincrement())
content String
@@allow('all', auth().verySad)
}
Currently, this doesn't compile, because verySad isn't recognized as a field of auth(). I think it would make sense for auth() to consider extended model fields valid as well (and optional), since that's what you would get from a prisma.user.find() call.
Screenshots
If applicable, add screenshots to help explain your problem.
Environment (please complete the following information):
- ZenStack version: [e.g., 1.0.0-alpha.50] 2.0.0-beta.14
- Prisma version: [e.g., 4.10.0] 5.12.1
- Database type: [e.g. Postgresql] any
Additional context
Add any other context about the problem here.