Ocelot-Social/webapp/graphql/Registration.js
Wolfgang Huß 266ed76639 Implement 'inviteCode' in webapp calling Mutations 'Signup', 'SignupVerify'
- Replace in calls of 'setSliderValuesCallback' 'this.sliderData.sliders[this.sliderIndex].validated' by 'null', because validation does not change.
2021-03-09 11:09:32 +01:00

29 lines
589 B
JavaScript

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