first commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import { z } from 'zod';
|
||||
import { SortOrderSchema } from '../enums/SortOrder.schema';
|
||||
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
|
||||
const Schema: z.ZodType<Prisma.AppointmentOrderByRelationAggregateInput> = z
|
||||
.object({
|
||||
_count: z.lazy(() => SortOrderSchema).optional(),
|
||||
})
|
||||
.strict();
|
||||
|
||||
export const AppointmentOrderByRelationAggregateInputObjectSchema = Schema;
|
||||
Reference in New Issue
Block a user