Ocelot-Social/webapp/graphql/Registration.js
Alexander Friedland 1fce840efb
locale
change language to locale
2019-10-18 12:16:32 +02:00

27 lines
535 B
JavaScript

import gql from 'graphql-tag'
export const SignupVerificationMutation = gql`
mutation(
$nonce: String!
$name: String!
$email: String!
$password: String!
$about: String
$termsAndConditionsAgreedVersion: String!
$locale: String
) {
SignupVerification(
nonce: $nonce
email: $email
name: $name
password: $password
about: $about
termsAndConditionsAgreedVersion: $termsAndConditionsAgreedVersion
locale: $locale
) {
id
name
slug
}
}
`