12 lines
209 B
TypeScript
12 lines
209 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const REGISTER_USER = gql`
|
|
mutation RegisterUser($input: RegisterUserInput) {
|
|
registerUser(input: $input) {
|
|
id
|
|
email
|
|
fullName
|
|
}
|
|
}
|
|
`;
|