11 lines
192 B
TypeScript
11 lines
192 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const CREATE_USER = gql`
|
|
mutation CreateUser($input: CreateUserInput) {
|
|
createUser(input: $input) {
|
|
email
|
|
fullName
|
|
}
|
|
}
|
|
`;
|