Compare commits
No commits in common. "b8aaabea8b2f61b23c9ca5002c1832f2337bb79f" and "8efa2e067cbf6cc67be51f0c896f2e9372f6ec29" have entirely different histories.
b8aaabea8b
...
8efa2e067c
@ -3855,15 +3855,6 @@ export type EditShotMutation = {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
export type RetireTagsMutationVariables = Exact<{
|
|
||||||
tagIds: Array<Scalars["Int"]["input"]> | Scalars["Int"]["input"];
|
|
||||||
}>;
|
|
||||||
|
|
||||||
export type RetireTagsMutation = {
|
|
||||||
__typename?: "Mutation";
|
|
||||||
retireTags: boolean;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type GetProfileImageUploadLinkMutationVariables = Exact<{
|
export type GetProfileImageUploadLinkMutationVariables = Exact<{
|
||||||
fileExt?: InputMaybe<Scalars["String"]["input"]>;
|
fileExt?: InputMaybe<Scalars["String"]["input"]>;
|
||||||
}>;
|
}>;
|
||||||
@ -6614,54 +6605,6 @@ export type EditShotMutationOptions = Apollo.BaseMutationOptions<
|
|||||||
EditShotMutation,
|
EditShotMutation,
|
||||||
EditShotMutationVariables
|
EditShotMutationVariables
|
||||||
>;
|
>;
|
||||||
export const RetireTagsDocument = gql`
|
|
||||||
mutation RetireTags($tagIds: [Int!]!) {
|
|
||||||
retireTags(tagIds: $tagIds)
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
export type RetireTagsMutationFn = Apollo.MutationFunction<
|
|
||||||
RetireTagsMutation,
|
|
||||||
RetireTagsMutationVariables
|
|
||||||
>;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* __useRetireTagsMutation__
|
|
||||||
*
|
|
||||||
* To run a mutation, you first call `useRetireTagsMutation` within a React component and pass it any options that fit your needs.
|
|
||||||
* When your component renders, `useRetireTagsMutation` 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 [retireTagsMutation, { data, loading, error }] = useRetireTagsMutation({
|
|
||||||
* variables: {
|
|
||||||
* tagIds: // value for 'tagIds'
|
|
||||||
* },
|
|
||||||
* });
|
|
||||||
*/
|
|
||||||
export function useRetireTagsMutation(
|
|
||||||
baseOptions?: Apollo.MutationHookOptions<
|
|
||||||
RetireTagsMutation,
|
|
||||||
RetireTagsMutationVariables
|
|
||||||
>,
|
|
||||||
) {
|
|
||||||
const options = { ...defaultOptions, ...baseOptions };
|
|
||||||
return Apollo.useMutation<RetireTagsMutation, RetireTagsMutationVariables>(
|
|
||||||
RetireTagsDocument,
|
|
||||||
options,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
export type RetireTagsMutationHookResult = ReturnType<
|
|
||||||
typeof useRetireTagsMutation
|
|
||||||
>;
|
|
||||||
export type RetireTagsMutationResult =
|
|
||||||
Apollo.MutationResult<RetireTagsMutation>;
|
|
||||||
export type RetireTagsMutationOptions = Apollo.BaseMutationOptions<
|
|
||||||
RetireTagsMutation,
|
|
||||||
RetireTagsMutationVariables
|
|
||||||
>;
|
|
||||||
export const GetProfileImageUploadLinkDocument = gql`
|
export const GetProfileImageUploadLinkDocument = gql`
|
||||||
mutation getProfileImageUploadLink($fileExt: String = ".png") {
|
mutation getProfileImageUploadLink($fileExt: String = ".png") {
|
||||||
getProfileImageUploadLink(fileExt: $fileExt) {
|
getProfileImageUploadLink(fileExt: $fileExt) {
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
mutation RetireTags($tagIds: [Int!]!) {
|
|
||||||
retireTags(tagIds: $tagIds)
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user