add delete tags operation"
All checks were successful
Tests / Tests (pull_request) Successful in 6s

This commit is contained in:
2025-03-27 11:38:26 -07:00
parent 84daf2d136
commit 280f5a66bd
2 changed files with 63 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
mutation RetireTags($tagIds: [Int!]!) {
retireTags(tagIds: $tagIds)
}
mutation DeleteTags($videoId: Int!, $tagsToDelete: [VideoTagInput!]!) {
deleteTags(videoId: $videoId, tagsToDelete: $tagsToDelete)
}