2022-03-09 21:41:08 +04:00

14 lines
270 B
TypeScript

const createUserMutation = /* GraphQL */ `
mutation createUser($input: CreateUserInput!) {
createUser(user: $input) {
loginResult {
tokens {
refreshToken
accessToken
}
}
}
}
`
export default createUserMutation