Variable DepartmentOwnQuerySchemaConst
DepartmentOwnQuerySchema: ZodObject<
{
distinct: ZodOptional<
ZodArray<
ZodEnum<
{ id: "id"; name: "name"; parentId: "parentId"; slug: "slug" },
>,
>,
>;
where: ZodOptional<
ZodPipe<
ZodTransform<any, unknown>,
ZodObject<
{
id: ZodOptional<
ZodUnion<
[
ZodCoercedNumber<unknown>,
ZodObject<
{
equals: ...;
gt: ...;
gte: ...;
in: ...;
lt: ...;
lte: ...;
not: ...;
notIn: ...;
},
$strip,
>,
],
>,
>;
name: ZodOptional<
ZodUnion<
[
ZodString,
ZodObject<
{
contains: ...;
endsWith: ...;
equals: ...;
gt: ...;
gte: ...;
in: ...;
lt: ...;
lte: ...;
not: ...;
notIn: ...;
startsWith: ...;
},
$strip,
>,
],
>,
>;
parentId: ZodOptional<
ZodUnion<
[
ZodCoercedNumber<unknown>,
ZodObject<
{
equals: ...;
gt: ...;
gte: ...;
in: ...;
lt: ...;
lte: ...;
not: ...;
notIn: ...;
},
$strip,
>,
],
>,
>;
slug: ZodOptional<
ZodUnion<
[
ZodString,
ZodObject<
{
contains: ...;
endsWith: ...;
equals: ...;
gt: ...;
gte: ...;
in: ...;
lt: ...;
lte: ...;
not: ...;
notIn: ...;
startsWith: ...;
},
$strip,
>,
],
>,
>;
},
$strip,
>,
>,
>;
},
$strip,
> = ...