|
@@ -4,7 +4,7 @@ export type InputMaybe<T> = Maybe<T>;
|
|
|
export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
|
|
|
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
|
|
|
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
|
|
|
-// Generated on 2022-06-26T14:02:35-07:00
|
|
|
+// Generated on 2022-08-20T16:36:05-07:00
|
|
|
|
|
|
/** All built-in and custom scalars, mapped to their actual values */
|
|
|
export type Scalars = {
|
|
@@ -13,11 +13,8 @@ export type Scalars = {
|
|
|
Boolean: boolean;
|
|
|
Int: number;
|
|
|
Float: number;
|
|
|
- /** Built-in scalar representing an instant in time */
|
|
|
Date: any;
|
|
|
- /** Built-in scalar for dynamic values */
|
|
|
ObjectScalar: any;
|
|
|
- /** Use SPQR's SchemaPrinter to remove this from SDL */
|
|
|
UNREPRESENTABLE: any;
|
|
|
};
|
|
|
|