contact-db
    Preparing search index...

    Variable DepartmentIncludeSchemaConst

    DepartmentIncludeSchema: ZodObject<
        {
            children: ZodOptional<
                ZodUnion<
                    [
                        ZodCoercedBoolean<unknown>,
                        ZodObject<
                            {
                                distinct: ZodOptional<
                                    ZodArray<
                                        ZodEnum<{ id: ...; name: ...; parentId: ...; slug: ... }>,
                                    >,
                                >;
                                where: ZodOptional<
                                    ZodPipe<
                                        ZodTransform<any, unknown>,
                                        ZodObject<{ id: ...; name: ...; parentId: ...; slug: ... }, $strip>,
                                    >,
                                >;
                            },
                            $strip,
                        >,
                    ],
                >,
            >;
            parent: ZodOptional<
                ZodUnion<
                    [
                        ZodCoercedBoolean<unknown>,
                        ZodObject<
                            {
                                distinct: ZodOptional<
                                    ZodArray<
                                        ZodEnum<{ id: ...; name: ...; parentId: ...; slug: ... }>,
                                    >,
                                >;
                                where: ZodOptional<
                                    ZodPipe<
                                        ZodTransform<any, unknown>,
                                        ZodObject<{ id: ...; name: ...; parentId: ...; slug: ... }, $strip>,
                                    >,
                                >;
                            },
                            $strip,
                        >,
                    ],
                >,
            >;
            titles: ZodOptional<
                ZodUnion<
                    [
                        ZodCoercedBoolean<unknown>,
                        ZodObject<
                            {
                                distinct: ZodOptional<
                                    ZodArray<
                                        ZodEnum<
                                            {
                                                departmentId: ...;
                                                description: ...;
                                                id: ...;
                                                name: ...;
                                                slug: ...;
                                            },
                                        >,
                                    >,
                                >;
                                where: ZodOptional<
                                    ZodPipe<
                                        ZodTransform<any, unknown>,
                                        ZodObject<
                                            {
                                                departmentId: ...;
                                                description: ...;
                                                id: ...;
                                                name: ...;
                                                slug: ...;
                                            },
                                            $strip,
                                        >,
                                    >,
                                >;
                            },
                            $strip,
                        >,
                    ],
                >,
            >;
        },
        $strip,
    > = ...