Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
// @flow
import { graphql } from 'react-apollo';
import gql from 'graphql-tag';
export const deleteCurrentUserMutation = gql`
mutation deleteCurrentUser {
deleteCurrentUser
}
`;
const deleteCurrentUserOptions = {
props: ({ mutate }) => ({
deleteCurrentUser: () => mutate(),
}),
};
export default graphql(deleteCurrentUserMutation, deleteCurrentUserOptions);