Print the combined projection schema including select, omit, and include.
DMMF.Model
string
export const ModelNameProjectionSchema = z.union({ z.object({ select: SelectSchemaName }), z.object({ omit: OmitSchemaName }), z.object({ include: IncludeSchemaName }), z.object({ })}) Copy
export const ModelNameProjectionSchema = z.union({ z.object({ select: SelectSchemaName }), z.object({ omit: OmitSchemaName }), z.object({ include: IncludeSchemaName }), z.object({ })})
Print the combined projection schema including select, omit, and include.