From 41a5bb76095b2bc3af823a43b99ca2b2b170c58b Mon Sep 17 00:00:00 2001 From: Mike Kalange Date: Fri, 21 Mar 2025 17:22:24 -0700 Subject: [PATCH] Add delete tags --- src/index.tsx | 6 ++++++ src/schema.gql | 1 + 2 files changed, 7 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index 3ce331b..8e90715 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2143,6 +2143,7 @@ export type Mutation = { addAnnotationToShot: AddShotAnnotationReturn; createBucketSet: BucketSetGql; createUploadStream: CreateUploadStreamReturn; + deleteTags: Scalars["Boolean"]["output"]; deleteVideo: Scalars["Boolean"]["output"]; editProfileImageUri: UserGql; editShot: EditShotReturn; @@ -2174,6 +2175,11 @@ export type MutationCreateUploadStreamArgs = { videoMetadata: VideoMetadataInput; }; +export type MutationDeleteTagsArgs = { + tagsToDelete: Array; + videoId: Scalars["Int"]["input"]; +}; + export type MutationDeleteVideoArgs = { videoId: Scalars["Int"]["input"]; }; diff --git a/src/schema.gql b/src/schema.gql index 8174eff..5e47c9d 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -799,6 +799,7 @@ type Mutation { ): Boolean! editUploadStream(videoId: Int!, videoMetadata: VideoMetadataInput!): Boolean! deleteVideo(videoId: Int!): Boolean! + deleteTags(videoId: Int!, tagsToDelete: [VideoTagInput!]!): Boolean! } input CreateBucketSetInput {