Compare commits
No commits in common. "dfb0361e12cdd50b997a8037b971d246691ab1f9" and "a497abd44dddb86de6001efce3c63b275bda2804" have entirely different histories.
dfb0361e12
...
a497abd44d
@ -2282,7 +2282,6 @@ export type Mutation = {
|
||||
createUploadStream: CreateUploadStreamReturn;
|
||||
deleteComment: Scalars["Boolean"]["output"];
|
||||
deleteTags: Scalars["Boolean"]["output"];
|
||||
deleteUser: Scalars["Boolean"]["output"];
|
||||
deleteVideo: Scalars["Boolean"]["output"];
|
||||
editComment: Scalars["Boolean"]["output"];
|
||||
editProfileImageUri: UserGql;
|
||||
@ -3201,11 +3200,8 @@ export type VideoProcessingErrorGql = {
|
||||
|
||||
export type VideoProcessingGql = {
|
||||
__typename?: "VideoProcessingGQL";
|
||||
currentSegment?: Maybe<Scalars["Int"]["output"]>;
|
||||
errors: Array<VideoProcessingErrorGql>;
|
||||
framesProcessed?: Maybe<Scalars["Int"]["output"]>;
|
||||
id: Scalars["Int"]["output"];
|
||||
progressPercentage?: Maybe<Scalars["Float"]["output"]>;
|
||||
status: ProcessingStatusEnum;
|
||||
statuses: Array<VideoProcessingStatusGql>;
|
||||
};
|
||||
@ -4752,13 +4748,6 @@ export type EditUserMutation = {
|
||||
};
|
||||
};
|
||||
|
||||
export type DeleteUserMutationVariables = Exact<{ [key: string]: never }>;
|
||||
|
||||
export type DeleteUserMutation = {
|
||||
__typename?: "Mutation";
|
||||
deleteUser: boolean;
|
||||
};
|
||||
|
||||
export type UserFragmentFragment = {
|
||||
__typename?: "UserGQL";
|
||||
id: number;
|
||||
@ -8917,53 +8906,6 @@ export type EditUserMutationOptions = Apollo.BaseMutationOptions<
|
||||
EditUserMutation,
|
||||
EditUserMutationVariables
|
||||
>;
|
||||
export const DeleteUserDocument = gql`
|
||||
mutation deleteUser {
|
||||
deleteUser
|
||||
}
|
||||
`;
|
||||
export type DeleteUserMutationFn = Apollo.MutationFunction<
|
||||
DeleteUserMutation,
|
||||
DeleteUserMutationVariables
|
||||
>;
|
||||
|
||||
/**
|
||||
* __useDeleteUserMutation__
|
||||
*
|
||||
* To run a mutation, you first call `useDeleteUserMutation` within a React component and pass it any options that fit your needs.
|
||||
* When your component renders, `useDeleteUserMutation` 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 [deleteUserMutation, { data, loading, error }] = useDeleteUserMutation({
|
||||
* variables: {
|
||||
* },
|
||||
* });
|
||||
*/
|
||||
export function useDeleteUserMutation(
|
||||
baseOptions?: Apollo.MutationHookOptions<
|
||||
DeleteUserMutation,
|
||||
DeleteUserMutationVariables
|
||||
>,
|
||||
) {
|
||||
const options = { ...defaultOptions, ...baseOptions };
|
||||
return Apollo.useMutation<DeleteUserMutation, DeleteUserMutationVariables>(
|
||||
DeleteUserDocument,
|
||||
options,
|
||||
);
|
||||
}
|
||||
export type DeleteUserMutationHookResult = ReturnType<
|
||||
typeof useDeleteUserMutation
|
||||
>;
|
||||
export type DeleteUserMutationResult =
|
||||
Apollo.MutationResult<DeleteUserMutation>;
|
||||
export type DeleteUserMutationOptions = Apollo.BaseMutationOptions<
|
||||
DeleteUserMutation,
|
||||
DeleteUserMutationVariables
|
||||
>;
|
||||
export const GetStreamMonitoringDetailsDocument = gql`
|
||||
query GetStreamMonitoringDetails($videoId: Int!, $debuggingJson: JSON) {
|
||||
getVideo(videoId: $videoId, debuggingJson: $debuggingJson) {
|
||||
|
@ -157,10 +157,6 @@ mutation editUser(
|
||||
}
|
||||
}
|
||||
|
||||
mutation deleteUser {
|
||||
deleteUser
|
||||
}
|
||||
|
||||
fragment UserFragment on UserGQL {
|
||||
id
|
||||
firebaseUid
|
||||
|
@ -569,9 +569,6 @@ type VideoProcessingGQL {
|
||||
errors: [VideoProcessingErrorGQL!]!
|
||||
status: ProcessingStatusEnum!
|
||||
statuses: [VideoProcessingStatusGQL!]!
|
||||
framesProcessed: Int
|
||||
currentSegment: Int
|
||||
progressPercentage: Float
|
||||
}
|
||||
|
||||
type VideoProcessingErrorGQL {
|
||||
@ -906,7 +903,6 @@ type Mutation {
|
||||
unfollowUser(followedUserId: Int!): UserGQL!
|
||||
retireTags(tagIds: [Int!]!): Boolean!
|
||||
ensureStripeCustomerExists: UserGQL!
|
||||
deleteUser: Boolean!
|
||||
createSubscription(priceId: String!): CreateSubscriptionResultGQL!
|
||||
findPrerecordTableLayout(b64Image: String!, videoId: Int!): HomographyInfoGQL
|
||||
createUploadStream(
|
||||
|
Loading…
x
Reference in New Issue
Block a user