export type Maybe = T | null; export type InputMaybe = Maybe; export type Exact = { [K in keyof T]: T[K] }; export type MakeOptional = Omit & { [SubKey in K]?: Maybe }; export type MakeMaybe = Omit & { [SubKey in K]: Maybe }; export type MakeEmpty = { [_ in K]?: never }; 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; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } Float: { input: number; output: number; } Any: { input: any; output: any; } Map: { input: any; output: any; } Time: { input: any; output: any; } Void: { input: any; output: any; } }; export type AuthUser = { __typename?: 'AuthUser'; displayName: Scalars['String']['output']; email: Scalars['String']['output']; id: Scalars['ID']['output']; roleID: Scalars['Int']['output']; }; export type Mutation = { __typename?: 'Mutation'; login: AuthUser; logout: Scalars['Boolean']['output']; }; export type MutationLoginArgs = { email: Scalars['String']['input']; pwd: Scalars['String']['input']; }; export type Query = { __typename?: 'Query'; me?: Maybe; }; export type MeQueryVariables = Exact<{ [key: string]: never; }>; export type MeQuery = { __typename?: 'Query', me?: { __typename?: 'AuthUser', id: string, displayName: string } | null };