From 4609af726b1bc8286d9ef00d8213f14f2cfb0030 Mon Sep 17 00:00:00 2001 From: Kat Huang Date: Fri, 25 Oct 2024 01:07:23 -0600 Subject: [PATCH] Delete user with ids --- src/index.tsx | 9 --------- src/operations/user.gql | 4 ---- 2 files changed, 13 deletions(-) diff --git a/src/index.tsx b/src/index.tsx index 20964e4..368fc29 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3147,11 +3147,6 @@ export type GetUsernamesAndFollowingQuery = { __typename?: "UsernamesAndFollowingResponse"; followers: Array; following: Array; - usernamesAndIds: Array<{ - __typename?: "UserGQL"; - username: string; - id: number; - }>; }; }; @@ -5143,10 +5138,6 @@ export const GetUsernamesAndFollowingDocument = gql` ) { followers following - usernamesAndIds { - username - id - } } } `; diff --git a/src/operations/user.gql b/src/operations/user.gql index e96c997..12e217a 100644 --- a/src/operations/user.gql +++ b/src/operations/user.gql @@ -71,10 +71,6 @@ query getUsernamesAndFollowing( ) { followers following - usernamesAndIds { - username - id - } } }