export type Maybe<T> = T | null
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]> }
/** All built-in and custom scalars, mapped to their actual values */
export type Scalars = {
ID: string
String: string
Boolean: boolean
Int: number
Float: number
}
export type User = {
__typename?: "User"
id: Scalars["ID"]
username: Scalars["String"]
email: Scalars["String"]
profile: Profile
chats: Array<Chat>
}
export type Profile = {
__typename?: "Profile"
name: Scalars["String"]
age?: Maybe<Scalars["Int"]>
}
export type Chat = {
__typename?: "Chat"