mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-01-20 20:01:25 +00:00
* separate all queries into one file each * fix merge error * fix lint --------- Co-authored-by: mahula <lenzmath@posteo.de> Co-authored-by: Wolfgang Huß <wolle.huss@pjannto.com>
25 lines
481 B
TypeScript
25 lines
481 B
TypeScript
import gql from 'graphql-tag'
|
|
|
|
export const signupVerificationMutation = gql`
|
|
mutation (
|
|
$password: String!
|
|
$email: String!
|
|
$name: String!
|
|
$slug: String
|
|
$nonce: String!
|
|
$termsAndConditionsAgreedVersion: String!
|
|
) {
|
|
SignupVerification(
|
|
email: $email
|
|
password: $password
|
|
name: $name
|
|
slug: $slug
|
|
nonce: $nonce
|
|
termsAndConditionsAgreedVersion: $termsAndConditionsAgreedVersion
|
|
) {
|
|
id
|
|
slug
|
|
}
|
|
}
|
|
`
|