/* * ------------------------------------------------------- * THIS FILE WAS AUTOMATICALLY GENERATED (DO NOT MODIFY) * ------------------------------------------------------- */ /* tslint:disable */ /* eslint-disable */ export interface NumbersInput { a?: Nullable; b?: Nullable; } export interface IQuery { hello(): string | Promise; } export interface IMutation { add(input?: Nullable): Nullable | Promise>; } type Nullable = T | null;