⛵
⛵
This PR implements #453 Types transformation utils is a feature that has been on the back burner for a long time. This PR comes with five utils types as: -...
This PR implements #620 and a part of #200 This PR enhances `@UseMiddleware()` and `@Authorized()`, now we can put them directly on the resolver so that we can avoid repeating...
Implements https://github.com/fabian-hiller/valibot/issues/373 - All schema functions accept the metadata argument: - Most schemas accept this argument using the location of the `message`. - Additional metadata argument added for some special...
This PR makes Mikro's EntitySchema follow [standard-schema](https://github.com/standard-schema/standard-schema) To implement `~validate` for [standard-schema](https://github.com/standard-schema/standard-schema?tab=readme-ov-file#the-interface), I also added the `validateSafely` method for simple validation in `EntityValidator`
This PR implements the support for table and column comments as discussed [here](https://github.com/drizzle-team/drizzle-orm/issues/1840) and [here](https://github.com/drizzle-team/drizzle-orm/issues/886). ```ts import * as my from 'drizzle-orm/mysql-core' const schema = my.mysqlTable( 'users', { id: my.serial('id').primaryKey().comment('users...
This PR implements the `Zod-Like API` discussed in the [previous discussion](https://github.com/mikro-orm/mikro-orm/issues/6242), which allows defining schemas using JavaScript code and automatically infers interfaces using TypeScript's inference capabilities. This brings two significant...
This is a small commit from https://github.com/mikro-orm/mikro-orm/pull/6253
**Is your feature request related to a problem? Please describe.** At this stage, in order to define Entity without using decorator magic, we use EntitySchema. like below: ```ts import {...
This PR adds a GraphQL server example demonstrating a modern, type-safe stack with **GQLoom, Prisma, GraphQL Yoga, and Zod.** The highlight of this example is [GQLoom](https://gqloom.dev/), a Code-First GraphQL schema...
Hello! I am the maintainer of [GQLoom](https://gqloom.dev/). GQLoom is a new GraphQL Schema producer. Unlike traditional Schema Builders, GQLoom doesn't have a built-in Builder API. Instead, it leverages popular schema...