mirror of
https://github.com/IT4Change/ohmyform-ui.git
synced 2025-12-13 09:45:50 +00:00
11 lines
227 B
TypeScript
11 lines
227 B
TypeScript
import { gql } from 'apollo-boost'
|
|
|
|
export const REGISTER_MUTATION = gql`
|
|
mutation register($user: UserCreateInput!) {
|
|
tokens: authRegister(user: $user) {
|
|
access: accessToken
|
|
refresh: refreshToken
|
|
}
|
|
}
|
|
`
|