feat: update migration logic and remove consolelog

This commit is contained in:
Rıdvan Akca
2023-03-03 14:10:54 +03:00
parent 18089a8076
commit d061eb7b58
3 changed files with 23 additions and 7 deletions

View File

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