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 }