Add delete tags
All checks were successful
Tests / Tests (pull_request) Successful in 16s

This commit is contained in:
Mike Kalange 2025-03-21 17:22:24 -07:00
parent b8aaabea8b
commit 41a5bb7609
2 changed files with 7 additions and 0 deletions

View File

@ -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<VideoTagInput>;
videoId: Scalars["Int"]["input"];
};
export type MutationDeleteVideoArgs = {
videoId: Scalars["Int"]["input"];
};

View File

@ -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 {