NestJS - Database with Prisma
Given this schema snippet:
What happens if you try to save a Book without
@Schema()
export class Book {
@Prop()
author: string;
@Prop({ required: true })
pages: number;
}What happens if you try to save a Book without
pages?