From 18c06935502ea0a3bf9d32d4f8b63e0f81b35d13 Mon Sep 17 00:00:00 2001 From: Untone Date: Fri, 17 Nov 2023 12:37:54 +0300 Subject: [PATCH] model-fix-2 --- src/graphql/query/chats-load.ts | 2 +- src/graphql/types.gen.ts | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/graphql/query/chats-load.ts b/src/graphql/query/chats-load.ts index fb92819b..fd961341 100644 --- a/src/graphql/query/chats-load.ts +++ b/src/graphql/query/chats-load.ts @@ -20,7 +20,7 @@ export default gql` messages { id body - author + created_by } } } diff --git a/src/graphql/types.gen.ts b/src/graphql/types.gen.ts index 1847b5f7..2171e8d5 100644 --- a/src/graphql/types.gen.ts +++ b/src/graphql/types.gen.ts @@ -78,11 +78,9 @@ export type ChatInput = { } export type MessageInput = { - author: Scalars['Int']['output'] body: Scalars['String']['output'] chat_id: Scalars['String']['output'] id: Scalars['Int']['output'] - reply_to?: Maybe seen?: Maybe }