asset-db
    Preparing search index...

    Variable CategoryOwnQuerySchemaConst

    CategoryOwnQuerySchema: ZodObject<
        {
            distinct: ZodOptional<
                ZodArray<ZodEnum<{ id: "id"; name: "name"; parentId: "parentId" }>>,
            >;
            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,
                                        >,
                                    ],
                                >,
                            >;
                        },
                        $strip,
                    >,
                >,
            >;
        },
        $strip,
    > = ...