diff --git a/src/index.tsx b/src/index.tsx index 1e55234..95064c0 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3955,6 +3955,16 @@ export type RetireTagsMutation = { retireTags: boolean; }; +export type DeleteTagsMutationVariables = Exact<{ + videoId: Scalars["Int"]["input"]; + tagsToDelete: Array | VideoTagInput; +}>; + +export type DeleteTagsMutation = { + __typename?: "Mutation"; + deleteTags: boolean; +}; + export type GetProfileImageUploadLinkMutationVariables = Exact<{ fileExt?: InputMaybe; }>; @@ -6753,6 +6763,55 @@ export type RetireTagsMutationOptions = Apollo.BaseMutationOptions< RetireTagsMutation, RetireTagsMutationVariables >; +export const DeleteTagsDocument = gql` + mutation DeleteTags($videoId: Int!, $tagsToDelete: [VideoTagInput!]!) { + deleteTags(videoId: $videoId, tagsToDelete: $tagsToDelete) + } +`; +export type DeleteTagsMutationFn = Apollo.MutationFunction< + DeleteTagsMutation, + DeleteTagsMutationVariables +>; + +/** + * __useDeleteTagsMutation__ + * + * To run a mutation, you first call `useDeleteTagsMutation` within a React component and pass it any options that fit your needs. + * When your component renders, `useDeleteTagsMutation` returns a tuple that includes: + * - A mutate function that you can call at any time to execute the mutation + * - An object with fields that represent the current status of the mutation's execution + * + * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2; + * + * @example + * const [deleteTagsMutation, { data, loading, error }] = useDeleteTagsMutation({ + * variables: { + * videoId: // value for 'videoId' + * tagsToDelete: // value for 'tagsToDelete' + * }, + * }); + */ +export function useDeleteTagsMutation( + baseOptions?: Apollo.MutationHookOptions< + DeleteTagsMutation, + DeleteTagsMutationVariables + >, +) { + const options = { ...defaultOptions, ...baseOptions }; + return Apollo.useMutation( + DeleteTagsDocument, + options, + ); +} +export type DeleteTagsMutationHookResult = ReturnType< + typeof useDeleteTagsMutation +>; +export type DeleteTagsMutationResult = + Apollo.MutationResult; +export type DeleteTagsMutationOptions = Apollo.BaseMutationOptions< + DeleteTagsMutation, + DeleteTagsMutationVariables +>; export const GetProfileImageUploadLinkDocument = gql` mutation getProfileImageUploadLink($fileExt: String = ".png") { getProfileImageUploadLink(fileExt: $fileExt) { diff --git a/src/operations/tags.gql b/src/operations/tags.gql index 6789845..0d17a38 100644 --- a/src/operations/tags.gql +++ b/src/operations/tags.gql @@ -1,3 +1,7 @@ mutation RetireTags($tagIds: [Int!]!) { retireTags(tagIds: $tagIds) } + +mutation DeleteTags($videoId: Int!, $tagsToDelete: [VideoTagInput!]!) { + deleteTags(videoId: $videoId, tagsToDelete: $tagsToDelete) +}