Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/pothos/packages/core/types/index.ts>MergedScalars

Pothos GraphQL is library for creating GraphQL schemas in typescript using a strongly typed code first approach
Go to Latest
type alias MergedScalars
import { type MergedScalars } from "https://deno.land/x/pothos@release-1716310600/packages/core/types/index.ts";

Type Parameters

PartialTypes extends Partial<PothosSchemaTypes.UserSchemaTypes>
definition: SchemaTypes["Scalars"] & [K in keyof DefaultScalars | keyof PartialTypes["Scalars"]]: K extends keyof PartialTypes["Scalars"] ? PartialTypes["Scalars"][K] : K extends keyof DefaultScalars ? DefaultScalars[K] : never