model-fix-2

This commit is contained in:
Untone 2023-11-17 12:37:54 +03:00
parent 5df3da78d0
commit 18c0693550
2 changed files with 1 additions and 3 deletions

View File

@ -20,7 +20,7 @@ export default gql`
messages { messages {
id id
body body
author created_by
} }
} }
} }

View File

@ -78,11 +78,9 @@ export type ChatInput = {
} }
export type MessageInput = { export type MessageInput = {
author: Scalars['Int']['output']
body: Scalars['String']['output'] body: Scalars['String']['output']
chat_id: Scalars['String']['output'] chat_id: Scalars['String']['output']
id: Scalars['Int']['output'] id: Scalars['Int']['output']
reply_to?: Maybe<Scalars['Int']['output']>
seen?: Maybe<Scalars['Boolean']['output']> seen?: Maybe<Scalars['Boolean']['output']>
} }