diff --git a/schema.d.ts b/schema.d.ts index 8cd09c1ab..69f66549e 100644 --- a/schema.d.ts +++ b/schema.d.ts @@ -7,7 +7,7 @@ export type MakeEmpty = export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string | number; output: string; } + ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; }