Merge pull request #970 from automatisch/add-signup

feat: add signup page
This commit is contained in:
Ali BARIN
2023-03-03 19:06:43 +01:00
committed by GitHub
10 changed files with 243 additions and 6 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
}
}
`;