chore: remove redundant create user mutation

This commit is contained in:
Ali BARIN
2024-09-18 15:26:30 +00:00
committed by Faruk AYDIN
parent cfec447d8a
commit e126066132
4 changed files with 7 additions and 95 deletions

View File

@@ -1,16 +0,0 @@
import { gql } from '@apollo/client';
export const CREATE_USER = gql`
mutation CreateUser($input: CreateUserInput) {
createUser(input: $input) {
user {
id
email
fullName
role {
id
}
}
acceptInvitationUrl
}
}
`;