From 7a97e8303d77f5a06e41d58d58dbc6cb18f5f136 Mon Sep 17 00:00:00 2001 From: tonyrewin Date: Sun, 27 Nov 2022 15:21:15 +0300 Subject: [PATCH] fix schema --- src/graphql/types.gen.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/graphql/types.gen.ts b/src/graphql/types.gen.ts index f55c8788..39afa866 100644 --- a/src/graphql/types.gen.ts +++ b/src/graphql/types.gen.ts @@ -59,12 +59,13 @@ export type Chat = { createdBy: Scalars['String'] description?: Maybe id: Scalars['String'] + members?: Maybe>> messages?: Maybe>> private?: Maybe title?: Maybe unread?: Maybe updatedAt: Scalars['Int'] - users: Array> + users?: Maybe>> } export type ChatInput = { @@ -75,8 +76,6 @@ export type ChatInput = { export type ChatMember = { id: Scalars['Int'] - invitedAt?: Maybe - invitedBy?: Maybe lastSeen?: Maybe name: Scalars['String'] slug: Scalars['String']