Module

x/pothos/packages/core/index.ts>NullableToOptional

Pothos GraphQL is library for creating GraphQL schemas in typescript using a strongly typed code first approach
Go to Latest
type alias NullableToOptional
import { type NullableToOptional } from "https://dotland.deno.dev/x/pothos@release-1708848346/packages/core/index.ts";
definition: T extends object ? Normalize<[K in OptionalKeys<T>]?: T[K] & [K in RequiredKeys<T>]: T[K]> : T