From 99f8968a36b46bee8d5b80d053bc43b47b76c369 Mon Sep 17 00:00:00 2001 From: Kat Huang Date: Wed, 9 Jul 2025 11:37:21 -0600 Subject: [PATCH] Create delete user --- src/index.tsx | 1 + src/schema.gql | 1 + 2 files changed, 2 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index 246f3a0..f5686d8 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2275,6 +2275,7 @@ export type Mutation = { createUploadStream: CreateUploadStreamReturn; deleteComment: Scalars["Boolean"]["output"]; deleteTags: Scalars["Boolean"]["output"]; + deleteUser: Scalars["Boolean"]["output"]; deleteVideo: Scalars["Boolean"]["output"]; editComment: Scalars["Boolean"]["output"]; editProfileImageUri: UserGql; diff --git a/src/schema.gql b/src/schema.gql index 1e1acea..bdc8e73 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -906,6 +906,7 @@ type Mutation { unfollowUser(followedUserId: Int!): UserGQL! retireTags(tagIds: [Int!]!): Boolean! ensureStripeCustomerExists: UserGQL! + deleteUser: Boolean! findPrerecordTableLayout(b64Image: String!, videoId: Int!): HomographyInfoGQL createUploadStream( videoMetadata: VideoMetadataInput!