mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
29 lines
589 B
JavaScript
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
|
|
}
|
|
}
|
|
`
|