From a8b3d43dcdc1b02877bfe17e4b41158c457f765d Mon Sep 17 00:00:00 2001 From: Saihajpreet Singh Date: Fri, 27 Dec 2024 12:36:57 +0100 Subject: [PATCH] add ts ignore for user schema (#1913) --- src/components/marked/users-schema.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/marked/users-schema.ts b/src/components/marked/users-schema.ts index f80f44614a..672aa25571 100644 --- a/src/components/marked/users-schema.ts +++ b/src/components/marked/users-schema.ts @@ -67,6 +67,7 @@ const ImageType = new GraphQLObjectType({ // @ts-expect-error -- fixme const FriendConnection = new GraphQLObjectType({ name: "FriendConnection", + // @ts-expect-error -- fixme fields: () => ({ totalCount: { type: GraphQLInt }, friends: { type: new GraphQLList(UserType) },